Bump version to 4.1-6
[LibreOffice.git] / sfx2 / source / view / view.src
blob640e8c6e8ff9e8b2834616627d23827cd9b5e5e8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "view.hrc"
21 #include <sfx2/sfx.hrc>
22 #include "helpid.hrc"
23 #include "sfxlocal.hrc"
25  // Strings ---------------------------------------------------------------
26 String STR_NODEFPRINTER
28     Text [ en-US ] = "No default printer found.\nPlease choose a printer and try again." ;
30 String STR_NOSTARTPRINTER
32     Text [ en-US ] = "Could not start printer.\nPlease check your printer configuration." ;
34 String STR_PRINTER_NOTAVAIL
36     Text [ en-US ] = "This document has been formatted for the printer $1. The specified printer is not available. \nDo you want to use the standard printer $2 ?" ;
38 String STR_PRINT_OPTIONS
40     Text [ en-US ] = "Options..." ;
42 String STR_ERROR_PRINTER_BUSY
44     Text [ en-US ] = "Printer busy" ;
46 String STR_ERROR_PRINT
48     Text [ en-US ] = "Error while printing" ;
50 String STR_PRINTING
52     Text [ en-US ] = "Printing" ;
54 String STR_PAGE
56     Text [ en-US ] = "Page " ;
58 String STR_ERROR_SAVE_TEMPLATE
60     Text [ en-US ] = "Error saving template " ;
62 String STR_READONLY
64     Text [ en-US ] = " (read-only)" ;
66 String STR_PRINT_NEWORI
68     Text [ en-US ] = "The page size and orientation have been modified.\nWould you like to save the new settings in the\nactive document?" ;
70 String STR_PRINT_NEWSIZE
72     Text [ en-US ] = "The page size has been modified.\nShould the new settings be saved\nin the active document?" ;
74 String STR_PRINT_NEWORISIZE
76     Text [ en-US ] = "The page size and orientation have been modified.\nWould you like to save the new settings in the\nactive document?" ;
78 String STR_PREVIEW_DOCINFO
80     Text [ en-US ] = "<html><body BGCOLOR=\"#c0c0c0\"><font FACE=\"Arial\"><dl><dt><b>Title:</b><dd>$(TITEL)<dt><b>Subject:</b><dd>$(THEME)<dt><b>Keywords:</b><dd>$(KEYWORDS)<dt><b>Description:</b><dd>$(TEXT)</dl></font></body></html>" ;
82 String STR_PREVIEW_NODOCINFO
84     Text [ en-US ] = "<HTML><BODY BGCOLOR=\"#c0c0c0\"><BR><BR><P><FONT FACE=\"Arial\"><B>No document properties found.</B></FONT></P></BODY></HTML>" ;
86  // -----------------------------------------------------------------------
87 InfoBox MSG_CANT_CLOSE
89     Message [ en-US ] = "The document cannot be closed because a\n print job is being carried out." ;
91  // DLG_PRINTMONITOR ------------------------------------------------------
93 #define DLG_PRINTMONITOR_TEXT \
94     Text [ en-US ] = "Print Monitor" ; \
96 ModelessDialog DLG_PRINTMONITOR
98     HelpID = HID_PRINTMONITOR ;
99     OutputSize = TRUE ;
100     SVLook = TRUE ;
101     Hide = TRUE ;
102     Moveable = TRUE;
103     Size = MAP_APPFONT ( 112 , 81 ) ;
104     DLG_PRINTMONITOR_TEXT
105     FixedText FT_DOCNAME
106     {
107         Pos = MAP_APPFONT ( 6 , 6 ) ;
108         Size = MAP_APPFONT ( 100 , 10 ) ;
109         Center = TRUE ;
110     };
111     FixedText FT_PRINTING
112     {
113         Pos = MAP_APPFONT ( 6 , 19 ) ;
114         Size = MAP_APPFONT ( 100 , 10 ) ;
115         Center = TRUE ;
116         Text [ en-US ] = "is being printed on" ;
117     };
118     FixedText FT_PRINTER
119     {
120         Pos = MAP_APPFONT ( 6 , 32 ) ;
121         Size = MAP_APPFONT ( 100 , 10 ) ;
122         Center = TRUE ;
123     };
124     FixedText FT_PRINTINFO
125     {
126         Pos = MAP_APPFONT ( 6 , 45 ) ;
127         Size = MAP_APPFONT ( 100 , 10 ) ;
128         Center = TRUE ;
129     };
130     CancelButton PB_CANCELPRNMON
131     {
132         Pos = MAP_APPFONT ( 31 , 61 ) ;
133         Size = MAP_APPFONT ( 50 , 14 ) ;
134     };
135     String STR_FT_PREPARATION
136     {
137         Text [ en-US ] = "is being prepared for printing";
138     };
141  // MSG_ERROR_SEND_MAIL ---------------------------------------------------
143 InfoBox MSG_ERROR_SEND_MAIL
145     BUTTONS = WB_OK ;
146     DEFBUTTON = WB_DEF_OK ;
147     Message [ en-US ] = "An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\nPlease check the %PRODUCTNAME settings or your e-mail program settings." ;
150  // QueryBoxen ------------------------------------------------------------
151 QueryBox MSG_QUERY_OPENASTEMPLATE
153     Buttons = WB_YES_NO ;
154     DefButton = WB_DEF_NO ;
155     Message [ en-US ] = "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?" ;
157 String STR_REPAIREDDOCUMENT
159     Text [ en-US ] = " (repaired document)" ;
162 String STR_NONCHECKEDOUT_DOCUMENT
164     Text [ en-US ] = "Document is not checked out on server" ;
167 PushButton BT_CHECKOUT
169     Pos = MAP_APPFONT( 0 , 0 );
170     Size = MAP_APPFONT( 30 , 0 );
171     Text[ en-US ] = "Check out";
174 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */