summaryrefslogtreecommitdiff
path: root/sc/source/ui/src
diff options
context:
space:
mode:
authorLaszlo Kis-Adam <dfighter1985@gmail.com>2015-03-20 02:14:38 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-03-28 19:55:30 +0100
commitfd28dea50930797652afbdce6992bea08c56caa0 (patch)
tree22d3c1415447f485c0a50893ae0affc2ffcdbb38 /sc/source/ui/src
parent78ad5ecd988270f3308fe98cc128ddf832c0c00b (diff)
tdf#42897 Warn the user if string without quote is entered as condition value.
Change-Id: I5b30b608c0192b434ff237513ed7fbbf5af43f11
Diffstat (limited to 'sc/source/ui/src')
-rw-r--r--sc/source/ui/src/condformatdlg.src6
-rw-r--r--sc/source/ui/src/globstr.src8
2 files changed, 14 insertions, 0 deletions
diff --git a/sc/source/ui/src/condformatdlg.src b/sc/source/ui/src/condformatdlg.src
index 68e91e943a11..d086dcaf3589 100644
--- a/sc/source/ui/src/condformatdlg.src
+++ b/sc/source/ui/src/condformatdlg.src
@@ -190,6 +190,12 @@ Control RID_COND_ENTRY
Text [ en-US ] = "Example";
Border = TRUE;
};
+ FixedText FT_VAL
+ {
+ Pos = MAP_APPFONT( 5, 48 );
+ Size = MAP_APPFONT( 300, 12 );
+ Text[ en-US ] = "Enter a value!";
+ };
Edit ED_COL_SCALE_MIN
{
Pos = MAP_APPFONT( 5, 48 );
diff --git a/sc/source/ui/src/globstr.src b/sc/source/ui/src/globstr.src
index 94be7b833407..616342b0a60f 100644
--- a/sc/source/ui/src/globstr.src
+++ b/sc/source/ui/src/globstr.src
@@ -2081,6 +2081,14 @@ Resource RID_GLOBSTR
{
Text [ en-US ] = "Convert Formula To Value";
};
+ String STR_UNQUOTED_STRING
+ {
+ Text [ en-US ] = "Strings must be quoted, otherwise they might be interpreted as an address or col/row name!";
+ };
+ String STR_ENTER_VALUE
+ {
+ Text[ en-US ] = "Enter a value!";
+ };
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */