diff options
author | Eike Rathke <erack@redhat.com> | 2022-09-25 16:53:52 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2022-09-25 17:39:53 +0200 |
commit | 7dca847f07c57591d20b6a2c618bfd8bfe62a09f (patch) | |
tree | f3f596aba9d3dd450639fbf93def40142e2e4531 /sc | |
parent | f65ca3470ea2ede39314668348607dd061d003fe (diff) |
Resolves: tdf#151165 Function Wizard: ISODD()/ISEVEN() truncate to integer
Change-Id: I73d06c6c40ac33f59cf38218b3e696de9aeb0b87
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140569
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'sc')
-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 12d59858260e..830f041c1536 100644 --- a/sc/inc/scfuncs.hrc +++ b/sc/inc/scfuncs.hrc @@ -1061,7 +1061,7 @@ const TranslateId SC_OPCODE_RANDOM_ARY[] = // -=*# Resource for function ISEVEN #*=- const TranslateId SC_OPCODE_IS_EVEN_ARY[] = { - NC_("SC_OPCODE_IS_EVEN", "Returns TRUE if value is an even integer."), + NC_("SC_OPCODE_IS_EVEN", "Returns TRUE if the value truncated to integer is even."), NC_("SC_OPCODE_IS_EVEN", "Value"), NC_("SC_OPCODE_IS_EVEN", "The value to be tested.") }; @@ -1069,7 +1069,7 @@ const TranslateId SC_OPCODE_IS_EVEN_ARY[] = // -=*# Resource for function ISODD #*=- const TranslateId SC_OPCODE_IS_ODD_ARY[] = { - NC_("SC_OPCODE_IS_ODD", "Returns TRUE if value is an odd integer."), + NC_("SC_OPCODE_IS_ODD", "Returns TRUE if the value truncated to integer is odd."), NC_("SC_OPCODE_IS_ODD", "Value"), NC_("SC_OPCODE_IS_ODD", "The value to be tested.") }; |