Advertisement
Guest User

Untitled

a guest
Jan 6th, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.89 KB | None | 0 0
  1. commit accbdd09b720d9bb50ec70f8f1e0124c3d80abed
  2. Author: William Gathoye <william@gathoye.be>
  3. Date:   Fri Jan 6 22:55:50 2012 +0100
  4.  
  5.     Solve some UI problems in translatedLibO version
  6.  
  7. diff --git a/sfx2/source/dialog/alienwarn.src b/sfx2/source/dialog/alienwarn.src
  8. index 0ba3f59..aa50cb5 100644
  9. --- a/sfx2/source/dialog/alienwarn.src
  10. +++ b/sfx2/source/dialog/alienwarn.src
  11. @@ -38,7 +38,7 @@ ModalDialog RID_DLG_ALIEN_WARNING
  12.      Moveable = TRUE;
  13.      SVLook = TRUE;
  14.  
  15. -    Text = "Save";
  16. +    Text [ en-US ] = "Save";
  17.  
  18.      FixedImage FI_QUERY
  19.      {
  20. @@ -52,20 +52,20 @@ ModalDialog RID_DLG_ALIEN_WARNING
  21.          NoLabel = TRUE;
  22.          Wordbreak = TRUE;
  23.          Text [ en-US-old ] = "This document may contain formatting or content that cannot be saved in the %FORMATNAME file format. Do you want to save the document in this format anyway?\n\n- Click 'Yes' to save in %FORMATNAME file format.\n- Click 'No' to use the latest OpenDocument file format and be sure all formatting and content is saved correctly.";
  24. -        Text [ en-US ] = "This document may contain formatting or content that cannot be saved in the currently selected file format \"%FORMATNAME\".\n\nUse the default ODF file format to be sure that the document is saved correctly.";
  25. +        Text [ en-US ] = "This document may contain formatting or content that cannot be saved in the currently selected file format \"%FORMATNAME\".\n\nUse the default ODF file format to be sure that the document is saved correctly.\n\nWhich format do you want to use?";
  26.      };
  27.      OKButton PB_NO
  28.      {
  29.          Pos = MAP_APPFONT( AW_COL_2, AW_ROW_2 );
  30.          Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
  31.          DefButton = TRUE ;
  32. -        Text [ en-US ] = "~Use %FORMATNAME Format";
  33. +        Text [ en-US ] = "%FORMATNAME ~Format";
  34.      };
  35.      CancelButton PB_YES
  36.      {
  37.          Pos = MAP_APPFONT( AW_COL_3, AW_ROW_2 );
  38.          Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
  39. -        Text [ en-US ] = "Use ~ODF Format";
  40. +        Text [ en-US ] = "~ODF Format";
  41.      };
  42.      HelpButton PB_MOREINFO
  43.      {
  44. diff --git a/sw/source/ui/dialog/wordcountdialog.src b/sw/source/ui/dialog/wordcountdialog.src
  45. index 7c4a5f9..79fd915 100644
  46. --- a/sw/source/ui/dialog/wordcountdialog.src
  47. +++ b/sw/source/ui/dialog/wordcountdialog.src
  48. @@ -33,7 +33,7 @@ ModelessDialog DLG_WORDCOUNT
  49.      OutputSize = TRUE ;
  50.      SVLook = TRUE ;
  51.      Size = MAP_APPFONT ( 170 , 136 ) ;
  52. -    Text [ en-US ] = "Word Count" ;
  53. +    Text [ en-US ] = "Statistics" ;
  54.      Moveable = TRUE ;
  55.  
  56.      Closeable = TRUE;
  57. @@ -129,7 +129,7 @@ ModelessDialog DLG_WORDCOUNT
  58.          Pos = MAP_APPFONT ( 0 , 103 ) ;
  59.          Size = MAP_APPFONT ( 170 , 8 ) ;
  60.      };
  61. -        HelpButton      PB_HELP
  62. +    HelpButton      PB_HELP
  63.      {
  64.          Pos = MAP_APPFONT ( 5 , 114 ) ;
  65.          Size = MAP_APPFONT ( 50 , 15 ) ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement