417
418
419
420
421
422
423
424
425
426
427
428
429
430
|
`sCountry`
> Contains the current country locale of the checked paragraph.
colour <<- sCountry == "US" ->> color # Use American English spelling.
## ACTIONS ##
There are 5 kinds of actions:
1. Suggestions. The grammar checker suggests corrections.
2. Text processor. A internal process to modify the text internally. This is used to simplify grammar checking.
|
>
>
>
>
|
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
|
`sCountry`
> Contains the current country locale of the checked paragraph.
colour <<- sCountry == "US" ->> color # Use American English spelling.
`sContext`
> The name of the application running (Python, Writer…)
## ACTIONS ##
There are 5 kinds of actions:
1. Suggestions. The grammar checker suggests corrections.
2. Text processor. A internal process to modify the text internally. This is used to simplify grammar checking.
|