summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@libreoffice.org>2024-05-14 17:20:02 -0300
committerOlivier Hallot <olivier.hallot@libreoffice.org>2024-05-15 16:40:54 +0200
commit81e7c91e7d55f20705855d18e6a74db8ae45057d (patch)
treed3760892483a65bc0d4a518752fff066f1b339b5 /sc
parent06f1787d50fd6dd510917e53f4842d88725b32d1 (diff)
Review RANDARRAY arguments explanation
- As discussed in IRC, remove potential ambiguities in Min and Max - changed "Whole number" to "Integer" to distance terms used in other suites - Rephrased main RANDARRAY definition Change-Id: I5e557f1e11ce321652df04a300f2cc4103fe1161 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167645 Tested-by: Jenkins Reviewed-by: Balazs Varga <balazs.varga.extern@allotropia.de> Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/scfuncs.hrc12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/scfuncs.hrc b/sc/inc/scfuncs.hrc
index eaeb43326a87..6d57127f18bf 100644
--- a/sc/inc/scfuncs.hrc
+++ b/sc/inc/scfuncs.hrc
@@ -4224,7 +4224,7 @@ const TranslateId SC_OPCODE_SORTBY_ARY[] =
// -=*# Resource for function SEQUENCE #*=-
const TranslateId SC_OPCODE_MAT_SEQUENCE_ARY[] =
{
- NC_("SC_OPCODE_MAT_SEQUENCE", "Allows you to generate a list of sequential numbers in an array, such as 1, 2, 3, 4."),
+ NC_("SC_OPCODE_MAT_SEQUENCE", "Generates a list of sequential numbers in an array, such as 1, 2, 3, 4."),
NC_("SC_OPCODE_MAT_SEQUENCE", "Rows"),
NC_("SC_OPCODE_MAT_SEQUENCE", "The number of rows to return."),
NC_("SC_OPCODE_MAT_SEQUENCE", "Columns"),
@@ -4238,17 +4238,17 @@ const TranslateId SC_OPCODE_MAT_SEQUENCE_ARY[] =
// -=*# Resource for function RANDARRAY #*=-
const TranslateId SC_OPCODE_RANDARRAY_ARY[] =
{
- NC_("SC_OPCODE_RANDARRAY", "RANDARRAY function generates an array of random numbers between two values."),
+ NC_("SC_OPCODE_RANDARRAY", "Generates an array of random numbers between two limit values."),
NC_("SC_OPCODE_RANDARRAY", "Rows"),
NC_("SC_OPCODE_RANDARRAY", "The number of rows to return."),
NC_("SC_OPCODE_RANDARRAY", "Columns"),
NC_("SC_OPCODE_RANDARRAY", "The number of columns to return."),
NC_("SC_OPCODE_RANDARRAY", "Min"),
- NC_("SC_OPCODE_RANDARRAY", "The minimum number you would like returned."),
+ NC_("SC_OPCODE_RANDARRAY", "The lower limit of the generated numbers."),
NC_("SC_OPCODE_RANDARRAY", "Max"),
- NC_("SC_OPCODE_RANDARRAY", "The maximum number you would like returned."),
- NC_("SC_OPCODE_RANDARRAY", "Whole number"),
- NC_("SC_OPCODE_RANDARRAY", "Return a whole number or a decimal value.")
+ NC_("SC_OPCODE_RANDARRAY", "The upper limit of the generated numbers."),
+ NC_("SC_OPCODE_RANDARRAY", "Integers"),
+ NC_("SC_OPCODE_RANDARRAY", "Return whole numbers (TRUE) or decimal values (FALSE).")
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */