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
This commit is contained in:
Eike Rathke 2022-09-25 16:53:52 +02:00
parent f65ca3470e
commit 7dca847f07
2 changed files with 4 additions and 4 deletions

View file

@ -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.")
};

View file

@ -85,14 +85,14 @@ const TranslateId ANALYSIS_Networkdays[] =
const TranslateId ANALYSIS_Iseven[] =
{
NC_("ANALYSIS_Iseven", "Returns the value 'true' if the number is even"),
NC_("ANALYSIS_Iseven", "Returns the value 'true' if the number truncated to integer is even"),
NC_("ANALYSIS_Iseven", "Number"),
NC_("ANALYSIS_Iseven", "The number")
};
const TranslateId ANALYSIS_Isodd[] =
{
NC_("ANALYSIS_Isodd", "Returns the value 'true' if the number is odd"),
NC_("ANALYSIS_Isodd", "Returns the value 'true' if the number truncated to integer is odd"),
NC_("ANALYSIS_Isodd", "Number"),
NC_("ANALYSIS_Isodd", "The number")
};