diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-02-14 10:05:12 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2021-02-18 11:55:52 +0100 |
commit | 6d1b079b0c034948384a11675c6f7f52a29d23d7 (patch) | |
tree | e13dea22a2edd54203543c493be643a4bc6fec56 | |
parent | f36c3a7dc21e33bf7a2e47a6151775a7f747c6a8 (diff) |
tdf#140400: Percentile function wizard has a typo in the hint
Change-Id: I4f0c72f974b410a2da7e0c7c2c505ecbf5a6a751
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110879
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
-rw-r--r-- | sc/inc/scfuncs.hrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/scfuncs.hrc b/sc/inc/scfuncs.hrc index a5a5e2449fc6..a5479ebdb226 100644 --- a/sc/inc/scfuncs.hrc +++ b/sc/inc/scfuncs.hrc @@ -1938,11 +1938,11 @@ const char* SC_OPCODE_MEDIAN_ARY[] = // -=*# Resource for function PERCENTILE #*=- const char* SC_OPCODE_PERCENTILE_ARY[] = { - NC_("SC_OPCODE_PERCENTILE", "Returns the alpha quantile of a sample."), + NC_("SC_OPCODE_PERCENTILE", "Returns the alpha percentile of a sample."), NC_("SC_OPCODE_PERCENTILE", "Data"), NC_("SC_OPCODE_PERCENTILE", "The array of the data in the sample."), NC_("SC_OPCODE_PERCENTILE", "Alpha"), - NC_("SC_OPCODE_PERCENTILE", "The percentage rate of the quantile between 0 and 1.") + NC_("SC_OPCODE_PERCENTILE", "The percentile value between 0 and 1, inclusive.") }; // -=*# Resource for function PERCENTILE.EXC #*=- |