From b2a82d9bb256516ac589350579b90f43b68bd452 Mon Sep 17 00:00:00 2001 From: Keigo Kawamura <2448848492@mail.ecc.u-tokyo.ac.jp> Date: Mon, 16 Nov 2015 20:39:06 +0900 Subject: 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 Tested-by: Eike Rathke --- sc/source/ui/src/globstr.src | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'sc/source/ui/src') 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: */ -- cgit