diff options
author | Keigo Kawamura <2448848492@mail.ecc.u-tokyo.ac.jp> | 2015-11-16 20:39:06 +0900 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-01-18 17:42:20 +0000 |
commit | b2a82d9bb256516ac589350579b90f43b68bd452 (patch) | |
tree | e44ebdde61320d5745fcbf53d3bc4a9b41aab2cd /sc/source/ui/src | |
parent | e4b052842368658fcc36eac8a6564163845f6de4 (diff) |
tdf#95878 made more useful function suggestion system in formula editing
I made function list suggestion and description tip in libreoffice calc.
This change give us a nice function suggestion and easy function input.
For example if I write "=i" then calc suggests
"[if], iferror, ifna, and 50 more". You should only choice the function
you would write with Ctrl-Tab and Ctrl-Shift-Tab, and then type Enter.
Also there is a description of suggesting function, so even if you
do not know the true name of the function you want to write, you can
find the function.
This change also give us a description of arguments of selected function.
If I write "=i" and push enter key, then calc show "=if()" and
a description of arguments of function "if()".
Change-Id: Icd5ad04ea092fa39f27bb2776fd9e93649896baf
Reviewed-on: https://gerrit.libreoffice.org/20035
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc/source/ui/src')
-rw-r--r-- | sc/source/ui/src/globstr.src | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/source/ui/src/globstr.src b/sc/source/ui/src/globstr.src index 8ebb2c6fd710..3d69832b1ed2 100644 --- a/sc/source/ui/src/globstr.src +++ b/sc/source/ui/src/globstr.src @@ -2097,6 +2097,14 @@ Resource RID_GLOBSTR { Text [ en-US ] = "Sheet %1 of %2"; }; + String STR_FUNCTIONS_FOUND + { + Text [ en-US ] = "%1 and %2 more"; + }; + String STR_FUNCTIONS_NAMEDESCS + { + Text [ en-US ] = " : "; + }; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |