Kaydet (Commit) 00584476 authored tarafından Andras Timar's avatar Andras Timar

"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
üst 9034973d
...@@ -58,7 +58,7 @@ SvxInsRowColDlg::SvxInsRowColDlg(Window* pParent, bool bCol, const rtl::OString& ...@@ -58,7 +58,7 @@ SvxInsRowColDlg::SvxInsRowColDlg(Window* pParent, bool bCol, const rtl::OString&
bColumn( bCol ) bColumn( bCol )
{ {
FreeResource(); FreeResource();
String aTmp( GetText() ); String aTmp;
if( bColumn ) if( bColumn )
{ {
aTmp += aCol; aTmp += aCol;
......
...@@ -35,7 +35,6 @@ ModalDialog DLG_INS_ROW_COL ...@@ -35,7 +35,6 @@ ModalDialog DLG_INS_ROW_COL
OutputSize = TRUE ; OutputSize = TRUE ;
SVLook = TRUE ; SVLook = TRUE ;
Size = MAP_APPFONT ( 136 , 84 ) ; Size = MAP_APPFONT ( 136 , 84 ) ;
Text [ en-US ] = "Insert" ;
Moveable = TRUE ; Moveable = TRUE ;
OKButton BT_OK OKButton BT_OK
{ {
...@@ -110,10 +109,10 @@ ModalDialog DLG_INS_ROW_COL ...@@ -110,10 +109,10 @@ ModalDialog DLG_INS_ROW_COL
}; };
String STR_ROW String STR_ROW
{ {
Text [ en-US ] = " Rows" ; Text [ en-US ] = "Insert Rows" ;
}; };
String STR_COL String STR_COL
{ {
Text [ en-US ] = " Columns" ; Text [ en-US ] = "Insert Columns" ;
}; };
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment