summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2011-12-31 20:31:43 +0100
committerAndras Timar <atimar@suse.com>2012-01-03 15:24:52 +0100
commit6242fd72f2385860251067fd5bb123e10f4932ea (patch)
tree724c0041d60f80e90a3ef471f45c5214734a5ba1 /cui
parent321d449a07740ab82680e7502817d4035f380744 (diff)
"Insert" + "Rows" and "Insert" + "Columns" are not OK l10n-wise
never compose strings from two separate parts see http://listarchives.libreoffice.org/global/l10n/msg03714.html
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/insrc.cxx2
-rw-r--r--cui/source/dialogs/insrc.src5
2 files changed, 3 insertions, 4 deletions
diff --git a/cui/source/dialogs/insrc.cxx b/cui/source/dialogs/insrc.cxx
index d514ef431254..d6bb8b23ffe8 100644
--- a/cui/source/dialogs/insrc.cxx
+++ b/cui/source/dialogs/insrc.cxx
@@ -58,7 +58,7 @@ SvxInsRowColDlg::SvxInsRowColDlg(Window* pParent, bool bCol, const rtl::OString&
bColumn( bCol )
{
FreeResource();
- String aTmp( GetText() );
+ String aTmp;
if( bColumn )
{
aTmp += aCol;
diff --git a/cui/source/dialogs/insrc.src b/cui/source/dialogs/insrc.src
index f655620bcd54..630be3da4418 100644
--- a/cui/source/dialogs/insrc.src
+++ b/cui/source/dialogs/insrc.src
@@ -35,7 +35,6 @@ ModalDialog DLG_INS_ROW_COL
OutputSize = TRUE ;
SVLook = TRUE ;
Size = MAP_APPFONT ( 136 , 84 ) ;
- Text [ en-US ] = "Insert" ;
Moveable = TRUE ;
OKButton BT_OK
{
@@ -110,10 +109,10 @@ ModalDialog DLG_INS_ROW_COL
};
String STR_ROW
{
- Text [ en-US ] = " Rows" ;
+ Text [ en-US ] = "Insert Rows" ;
};
String STR_COL
{
- Text [ en-US ] = " Columns" ;
+ Text [ en-US ] = "Insert Columns" ;
};
};