summaryrefslogtreecommitdiff
path: root/scaddins
diff options
context:
space:
mode:
authorRafael Lima <rafael.palma.lima@gmail.com>2022-10-30 00:21:34 +0200
committerOlivier Hallot <olivier.hallot@libreoffice.org>2022-10-31 17:08:04 +0100
commitbed4d8f1eb32a39bfce5c7fa8546dbab155706a7 (patch)
treea886b9cbe465c0b3cc97aac11a23705e2901ce21 /scaddins
parentd5736c124223e77d5a8d67c8c95bf141ee74ab5b (diff)
tdf#150465 Improve description of RANDBETWEEN in function wizard
As requested by the user, this patch makes it clearer that both Bottom and Top values may be returned by the RANDBETWEEN and RANDBETWEEN.NV functions, making the Function Wizard and the online Help descriptions more similar. Change-Id: I730a9a5e42525f890c85c2489ef03797b812917a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141922 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'scaddins')
-rw-r--r--scaddins/inc/analysis.hrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/scaddins/inc/analysis.hrc b/scaddins/inc/analysis.hrc
index 385091151d48..b66233ede80e 100644
--- a/scaddins/inc/analysis.hrc
+++ b/scaddins/inc/analysis.hrc
@@ -144,11 +144,11 @@ const TranslateId ANALYSIS_Sqrtpi[] =
const TranslateId ANALYSIS_Randbetween[] =
{
- NC_("ANALYSIS_Randbetween", "Returns a random integer between the numbers you specify"),
+ NC_("ANALYSIS_Randbetween", "Returns a random integer between the specified Bottom and Top values (both inclusive)"),
NC_("ANALYSIS_Randbetween", "Bottom"),
- NC_("ANALYSIS_Randbetween", "The smallest integer returned"),
+ NC_("ANALYSIS_Randbetween", "The smallest integer that can be returned"),
NC_("ANALYSIS_Randbetween", "Top"),
- NC_("ANALYSIS_Randbetween", "The largest integer returned")
+ NC_("ANALYSIS_Randbetween", "The largest integer that can be returned")
};
const TranslateId ANALYSIS_Gcd[] =