From cf2296c78c6aad2f57c6e1fa4e7c50a34f340f33 Mon Sep 17 00:00:00 2001 From: Adolfo Jayme Barrientos Date: Tue, 19 Jul 2022 01:00:50 -0500 Subject: Fundamental confusion: *“Beware that” → “Be aware that” MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I7f6b830a87bbdf2380c32d515554cb9836b50848 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/137211 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- source/text/sbasic/shared/03/sf_dictionary.xhp | 2 +- source/text/sbasic/shared/03/sf_filesystem.xhp | 4 ++-- source/text/sbasic/shared/03/sf_form.xhp | 2 +- source/text/sbasic/shared/03/sf_l10n.xhp | 2 +- source/text/sbasic/shared/03/sf_services.xhp | 2 +- source/text/sbasic/shared/03/sf_textstream.xhp | 2 +- source/text/sbasic/shared/03/sf_timer.xhp | 2 +- source/text/sbasic/shared/03070600.xhp | 2 +- source/text/sbasic/shared/03170000.xhp | 2 +- source/text/scalc/01/02220000.xhp | 4 ++-- source/text/scalc/01/04060103.xhp | 2 +- source/text/scalc/01/04060110.xhp | 2 +- source/text/scalc/01/func_convert.xhp | 2 +- source/text/scalc/01/solver.xhp | 2 +- source/text/scalc/01/solver_options.xhp | 2 +- source/text/scalc/01/solver_options_algo.xhp | 2 +- source/text/shared/01/02100000.xhp | 2 +- source/text/smath/guide/color.xhp | 2 +- source/text/swriter/01/05060100.xhp | 2 +- 19 files changed, 21 insertions(+), 21 deletions(-) (limited to 'source') diff --git a/source/text/sbasic/shared/03/sf_dictionary.xhp b/source/text/sbasic/shared/03/sf_dictionary.xhp index 7d94a6c9ff..ba510c046d 100644 --- a/source/text/sbasic/shared/03/sf_dictionary.xhp +++ b/source/text/sbasic/shared/03/sf_dictionary.xhp @@ -325,7 +325,7 @@ inputstr: The string to import. - overwrite: When True, entries with same name may exist in the dictionary and their values are overwritten. When False (default), repeated keys will raise an error. Beware that dictionary keys are not case-sensitive while names are case-sensitive in JSON strings. + overwrite: When True, entries with same name may exist in the dictionary and their values are overwritten. When False (default), repeated keys will raise an error. Be aware that dictionary keys are not case-sensitive while names are case-sensitive in JSON strings. Dim s As String diff --git a/source/text/sbasic/shared/03/sf_filesystem.xhp b/source/text/sbasic/shared/03/sf_filesystem.xhp index 9461b7604c..0072c8290d 100644 --- a/source/text/sbasic/shared/03/sf_filesystem.xhp +++ b/source/text/sbasic/shared/03/sf_filesystem.xhp @@ -428,7 +428,7 @@ fs.CopyFile(r"C:\Documents\my_file.odt", r"C:\Temp\copied_file.odt") fs.CopyFile(r"C:\Documents\*.*", r"C:\Temp", overwrite = False) - Beware that subfolders and their contents are not copied when wildcards are used in the source argument. + Be aware that subfolders and their contents are not copied when wildcards are used in the source argument.
@@ -521,7 +521,7 @@ fs.FileNaming = "SYS" myFile = fs.CreateTextFile(r"C:\Temp\ThisFile.txt", overwrite = True) - To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets. + To learn more about the names of character sets, visit IANA's Character Set page. Be aware that %PRODUCTNAME does not implement all existing character sets.
diff --git a/source/text/sbasic/shared/03/sf_form.xhp b/source/text/sbasic/shared/03/sf_form.xhp index d9515a2227..667ab7cb1e 100644 --- a/source/text/sbasic/shared/03/sf_form.xhp +++ b/source/text/sbasic/shared/03/sf_form.xhp @@ -640,7 +640,7 @@ The value returned by the Controls method depends on the arguments provided: - If the method is called without arguments, then it returns the list of the controls contained in the form. Beware that the returned list does not contain any subform controls. + If the method is called without arguments, then it returns the list of the controls contained in the form. Be aware that the returned list does not contain any subform controls. If the optional ControlName argument is provided, the method returns a FormControl class instance referring to the specified control. diff --git a/source/text/sbasic/shared/03/sf_l10n.xhp b/source/text/sbasic/shared/03/sf_l10n.xhp index 453fe345ab..b722e00789 100644 --- a/source/text/sbasic/shared/03/sf_l10n.xhp +++ b/source/text/sbasic/shared/03/sf_l10n.xhp @@ -70,7 +70,7 @@ encoding: The character set to be used. The default encoding is "UTF-8". locale2: A string specifying the fallback locale to be used in case the PO file corresponding to the locale defined the locale parameter does not exist. This parameter is expressed in the form "la-CO" (language-COUNTRY) or "la" (language) only. encoding2: The character set of the fallback PO file corresponding to the locale2 argument. The default encoding is "UTF-8". - To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets. + To learn more about the names of character sets, visit IANA's Character Set page. Be aware that %PRODUCTNAME does not implement all existing character sets. The following example instantiates the L10N service without any optional arguments. This will only enable the AddText and ExportToPOTFile methods, which is useful for creating POT files. diff --git a/source/text/sbasic/shared/03/sf_services.xhp b/source/text/sbasic/shared/03/sf_services.xhp index e8462b4268..582bf336c0 100644 --- a/source/text/sbasic/shared/03/sf_services.xhp +++ b/source/text/sbasic/shared/03/sf_services.xhp @@ -92,7 +92,7 @@ bas = CreateScriptService("Basic") bas.MsgBox("Hello World!") - Beware that the Basic service has to be instantiated in Python scripts using the CreateScriptService method. + Be aware that the Basic service has to be instantiated in Python scripts using the CreateScriptService method.
diff --git a/source/text/sbasic/shared/03/sf_textstream.xhp b/source/text/sbasic/shared/03/sf_textstream.xhp index 7505f09c28..bec2c7e578 100644 --- a/source/text/sbasic/shared/03/sf_textstream.xhp +++ b/source/text/sbasic/shared/03/sf_textstream.xhp @@ -170,7 +170,7 @@ - To learn more about the names of character sets, visit IANA's Character Set page. Beware that %PRODUCTNAME does not implement all existing character sets. + To learn more about the names of character sets, visit IANA's Character Set page. Be aware that %PRODUCTNAME does not implement all existing character sets. List of Methods in the TextStream Service diff --git a/source/text/sbasic/shared/03/sf_timer.xhp b/source/text/sbasic/shared/03/sf_timer.xhp index b3c2ea2dd1..a2996679e6 100644 --- a/source/text/sbasic/shared/03/sf_timer.xhp +++ b/source/text/sbasic/shared/03/sf_timer.xhp @@ -268,7 +268,7 @@ myTimer.Terminate() bas.MsgBox("{} {} {}".format(myTimer.Duration, myTimer.SuspendDuration, myTimer.TotalDuration)) - Beware that the Wait function in Basic takes in a duration argument in milliseconds whereas the sleep function in Python uses seconds in its argument. + Be aware that the Wait function in BASIC takes in a duration argument in milliseconds whereas the sleep function in Python uses seconds in its argument.

Working with Multiple Timers

It is possible to instantiate multiple Timer services in parallel, which gives flexibility in measuring time in different parts of the code. diff --git a/source/text/sbasic/shared/03070600.xhp b/source/text/sbasic/shared/03070600.xhp index ed510a94cd..8d759bd667 100644 --- a/source/text/sbasic/shared/03070600.xhp +++ b/source/text/sbasic/shared/03070600.xhp @@ -49,7 +49,7 @@ The operation 16 MOD 6 returns 4, which is the remainder after dividing 16 by 6. -Beware that Basic's MOD operator and Calc's MOD Function behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value. +Be aware that BASIC's MOD operator and Calc's MOD Function behave differently. In Calc, both operands can be decimal values and they are not rounded before division, thus the resulting remainder may be a decimal value. diff --git a/source/text/sbasic/shared/03170000.xhp b/source/text/sbasic/shared/03170000.xhp index 7f5d824fb6..12f39aa4b1 100644 --- a/source/text/sbasic/shared/03170000.xhp +++ b/source/text/sbasic/shared/03170000.xhp @@ -35,7 +35,7 @@ This function implements the rounding rule known as "round-to-even". With this rule, whenever the difference between the number to be rounded and its nearest integer is equal to 0.5, the number is rounded to the nearest even number. See the examples below to learn more about this rule. - Beware that VBA's Round function works differently than %PRODUCTNAME Calc's Round function. In Calc, if the difference between the number to be rounded and the nearest integer is exactly 0.5, then the number is rounded up. Hence, in Calc the number 2.5 is rounded to 3 whereas using VBA's Round function the value 2.5 is rounded to 2 due to the "round-to-even" rule. + Be aware that VBA's Round function works differently than %PRODUCTNAME Calc's Round function. In Calc, if the difference between the number to be rounded and the nearest integer is exactly 0.5, then the number is rounded up. Hence, in Calc the number 2.5 is rounded to 3 whereas using VBA's Round function the value 2.5 is rounded to 2 due to the "round-to-even" rule. Round(expression [,numdecimalplaces]) diff --git a/source/text/scalc/01/02220000.xhp b/source/text/scalc/01/02220000.xhp index 914d3f12af..7ee9f7e6b3 100644 --- a/source/text/scalc/01/02220000.xhp +++ b/source/text/scalc/01/02220000.xhp @@ -35,8 +35,8 @@

Type a sheet name

- Type some characters contained in the searched sheet name. List of sheets will be limited to the sheet names containing these characters. Search is case sensitive. If empty, all visible sheets are listed. + Type some characters contained in the searched sheet name. List of sheets will be limited to the sheet names containing these characters. Search is case-sensitive. If empty, all visible sheets are listed.

Sheets

- Lists the sheets in the current document. Hidden sheets are not listed. To select a sheet, press the up or down arrow keys to move to a sheet in the list. Double click on a name will directly jump to this sheet. + Lists the sheets in the current document. Hidden sheets are not listed. To select a sheet, press the up or down arrow keys to move to a sheet in the list. Double-clicking on a name will directly jump to this sheet. diff --git a/source/text/scalc/01/04060103.xhp b/source/text/scalc/01/04060103.xhp index 1b14bdc26e..0de3bb2d8c 100644 --- a/source/text/scalc/01/04060103.xhp +++ b/source/text/scalc/01/04060103.xhp @@ -61,7 +61,7 @@ =AMORDEGRC(2000; "2020-02-01"; "2020-12-31"; 10; 4; 0.1; 0) returns a depreciation amount of 163 currency units.
- Beware that Basis 2 is not supported by Microsoft Excel. Hence, if you use Basis 2 and export your document to XLSX format, it will return an error when opened in Excel. + Be aware that Basis 2 is not supported by Microsoft Excel. Hence, if you use Basis 2 and export your document to XLSX format, it will return an error when opened in Excel.
diff --git a/source/text/scalc/01/04060110.xhp b/source/text/scalc/01/04060110.xhp index d4a9c00161..1d63e12398 100644 --- a/source/text/scalc/01/04060110.xhp +++ b/source/text/scalc/01/04060110.xhp @@ -64,7 +64,7 @@ -Beware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the Double Quotes area of the Tools - AutoCorrect Options - Localized Options dialog to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the Replace toggle button to disable the feature. +Be aware that Calc's AutoCorrect function may modify double quotation marks. AutoCorrect should not change the double quotation marks within formula cells but may change those used in non-formula cells containing text. For example, if you copy a string that is surrounded by some other form of typographical double quotation marks, such as the left double quotation mark (U+201C) and the right double quotation mark (U+201D), and then paste into a formula cell, an error may result. Open the Double Quotes area of the Tools - AutoCorrect Options - Localized Options dialog to set the characters used to automatically correct the start and end typographical double quotation marks. Uncheck the Replace toggle button to disable the feature.
diff --git a/source/text/scalc/01/func_convert.xhp b/source/text/scalc/01/func_convert.xhp index c422ba5bdf..bee20f638b 100644 --- a/source/text/scalc/01/func_convert.xhp +++ b/source/text/scalc/01/func_convert.xhp @@ -63,7 +63,7 @@

Units of measurement

- Below are the unit measurement groups supported by the CONVERT function. Beware that conversions can only happen between units that belong to the same group. + Below are the unit measurement groups supported by the CONVERT function. Be aware that conversions can only happen between units that belong to the same group. The column Prefix indicates whether or not a given unit of measurement supports prefixes.

Area

diff --git a/source/text/scalc/01/solver.xhp b/source/text/scalc/01/solver.xhp index 1aa2fa6a3b..23184e1091 100644 --- a/source/text/scalc/01/solver.xhp +++ b/source/text/scalc/01/solver.xhp @@ -147,7 +147,7 @@
- Wiki page on solvers and theirs algorithms + Wiki page on solvers and their algorithms
diff --git a/source/text/scalc/01/solver_options.xhp b/source/text/scalc/01/solver_options.xhp index e4e2291d4d..b72fe0899d 100644 --- a/source/text/scalc/01/solver_options.xhp +++ b/source/text/scalc/01/solver_options.xhp @@ -74,7 +74,7 @@
- Wiki page on non-linear solvers and theirs algorithms + Wiki page on non-linear solvers and their algorithms
diff --git a/source/text/scalc/01/solver_options_algo.xhp b/source/text/scalc/01/solver_options_algo.xhp index 486212284f..9ad02f74aa 100644 --- a/source/text/scalc/01/solver_options_algo.xhp +++ b/source/text/scalc/01/solver_options_algo.xhp @@ -379,7 +379,7 @@
- Wiki page on non-linear solvers and theirs algorithms + Wiki page on non-linear solvers and their algorithms lp_solve reference guide in sourceforge.net
diff --git a/source/text/shared/01/02100000.xhp b/source/text/shared/01/02100000.xhp index 46acfe4aca..cd4591fa41 100644 --- a/source/text/shared/01/02100000.xhp +++ b/source/text/shared/01/02100000.xhp @@ -77,7 +77,7 @@
Disable this option to consider all possible case matches. For example, entering "a" in the Find box matches both "a" and "A". - Beware that some characters may have more than one match when Match case is disabled. For instance, "s" matches "s", "S" and "ß" (sharp S used in the German language). + Be aware that some characters may have more than one match when Match case is disabled. For instance, "s" matches "s", "S" and "ß" (sharp S used in the German language). searching;formatted numbers diff --git a/source/text/smath/guide/color.xhp b/source/text/smath/guide/color.xhp index 75ac48cdc7..498d955d02 100644 --- a/source/text/smath/guide/color.xhp +++ b/source/text/smath/guide/color.xhp @@ -26,7 +26,7 @@ a + color red b - Beware that the color command only changes the color of the formula part that comes immediately after it. For example, in the formula below only b will be shown in red, whereas c will be shown in black. + Be aware that the color command only changes the color of the formula part that comes immediately after it. For example, in the formula below only b will be shown in red, whereas c will be shown in black. a + color red b + c diff --git a/source/text/swriter/01/05060100.xhp b/source/text/swriter/01/05060100.xhp index 098d2c9bae..67ee8fc5ad 100644 --- a/source/text/swriter/01/05060100.xhp +++ b/source/text/swriter/01/05060100.xhp @@ -130,7 +130,7 @@
- Beware that the set of options available depend on the Anchor settings. Therefore, not all options listed above may be shown due to the current Anchor choice. + Be aware that the set of options available depend on the Anchor settings. Therefore, not all options listed above may be shown due to the current Anchor choice.
You can see the result of the alignments options that you select in the Preview box. -- cgit