1 | /* ***** BEGIN LICENSE BLOCK *****
|
---|
2 | * Version: CDDL 1.0/LGPL 2.1
|
---|
3 | *
|
---|
4 | * The contents of this file are subject to the COMMON DEVELOPMENT AND
|
---|
5 | * DISTRIBUTION LICENSE (CDDL) Version 1.0 (the "License"); you may not use
|
---|
6 | * this file except in compliance with the License. You may obtain a copy of
|
---|
7 | * the License at http://www.sun.com/cddl/
|
---|
8 | *
|
---|
9 | * Software distributed under the License is distributed on an "AS IS" basis,
|
---|
10 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
---|
11 | * for the specific language governing rights and limitations under the
|
---|
12 | * License.
|
---|
13 | *
|
---|
14 | * The Initial Developer of the Original Code is
|
---|
15 | * Eugene Romanenko, netlabs.org.
|
---|
16 | * Portions created by the Initial Developer are Copyright (C) 2006
|
---|
17 | * the Initial Developer. All Rights Reserved.
|
---|
18 | *
|
---|
19 | * Contributor(s):
|
---|
20 | *
|
---|
21 | * Alternatively, the contents of this file may be used under the terms of
|
---|
22 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
---|
23 | * in which case the provisions of the LGPL are applicable instead of those
|
---|
24 | * above. If you wish to allow use of your version of this file only under the
|
---|
25 | * terms of the LGPL, and not to allow others to use your version of this file
|
---|
26 | * under the terms of the CDDL, indicate your decision by deleting the
|
---|
27 | * provisions above and replace them with the notice and other provisions
|
---|
28 | * required by the LGPL. If you do not delete the provisions above, a recipient
|
---|
29 | * may use your version of this file under the terms of any one of the CDDL
|
---|
30 | * or the LGPL.
|
---|
31 | *
|
---|
32 | * ***** END LICENSE BLOCK ***** */
|
---|
33 |
|
---|
34 |
|
---|
35 | #ifndef __MESSAGES_H
|
---|
36 | #define __MESSAGES_H
|
---|
37 |
|
---|
38 |
|
---|
39 | // Toolbar hints
|
---|
40 | extern const char *TBHINT_OPEN;
|
---|
41 | extern const char *TBHINT_PRINT;
|
---|
42 | extern const char *TBHINT_SHOW_NAV_PANE;
|
---|
43 | extern const char *TBHINT_FIRST_PAGE;
|
---|
44 | extern const char *TBHINT_PREV_PAGE;
|
---|
45 | extern const char *TBHINT_NEXT_PAGE;
|
---|
46 | extern const char *TBHINT_LAST_PAGE;
|
---|
47 | extern const char *TBHINT_ACTUAL_SIZE;
|
---|
48 | extern const char *TBHINT_FIT_WINDOW;
|
---|
49 | extern const char *TBHINT_FIT_WIDTH;
|
---|
50 | extern const char *TBHINT_FIND;
|
---|
51 | extern const char *TBHINT_FINDAGAIN;
|
---|
52 | // toolbar's page number
|
---|
53 | extern const char *TB_PAGENUM;
|
---|
54 |
|
---|
55 | // Lucide messages
|
---|
56 | extern const char *MSGS_MAIN_WIN_TITLE;
|
---|
57 | extern const char *MSGS_NO_SUIT_PLUG;
|
---|
58 | extern const char *MSGS_FILE_LOAD_ERROR;
|
---|
59 | extern const char *MSGS_LOADING_DOCUMENT;
|
---|
60 | extern const char *MSGS_WARNING;
|
---|
61 | extern const char *MSGS_OVERWRITE_FILE;
|
---|
62 | extern const char *MSGS_FILE_SAVE_ERROR;
|
---|
63 |
|
---|
64 | // Settings dialog
|
---|
65 | extern const char *SD_SINGLE_PAGE;
|
---|
66 | extern const char *SD_CONTINUOUS;
|
---|
67 |
|
---|
68 | // Plugins List columns titles
|
---|
69 | extern const char *PLUGLIST_PLUGIN_NAME;
|
---|
70 | extern const char *PLUGLIST_SUPP_EXTS;
|
---|
71 | extern const char *PLUGLIST_PLUGIN_DESC;
|
---|
72 |
|
---|
73 | // 'Fonts Info' List columns titles
|
---|
74 | extern const char *FONTINFO_NAME;
|
---|
75 | extern const char *FONTINFO_TYPE;
|
---|
76 | extern const char *FONTINFO_EMBEDDED;
|
---|
77 |
|
---|
78 |
|
---|
79 | // "Document info" dialog, Document info keys
|
---|
80 | extern const char *DOCINFO_TITLE;
|
---|
81 | extern const char *DOCINFO_FORMAT;
|
---|
82 | extern const char *DOCINFO_AUTHOR;
|
---|
83 | extern const char *DOCINFO_SUBJECT;
|
---|
84 | extern const char *DOCINFO_KEYWORDS;
|
---|
85 | extern const char *DOCINFO_CREATOR;
|
---|
86 | extern const char *DOCINFO_PRODUCER;
|
---|
87 | extern const char *DOCINFO_CREATION_DATE;
|
---|
88 | extern const char *DOCINFO_MOD_DATE;
|
---|
89 |
|
---|
90 | // "Find" dialog, other 'find'-related messages
|
---|
91 | extern const char *FIND_SEARCH_PAGE_OF;
|
---|
92 | extern const char *FIND_NOT_FOUND;
|
---|
93 |
|
---|
94 | // 'Go to page' dialog
|
---|
95 | extern const char *GTP_OF;
|
---|
96 |
|
---|
97 | // Printing, other 'print'-related messages
|
---|
98 | extern const char *PRINT_PRINTING_PAGE_OF;
|
---|
99 | extern const char *PRINT_GENERATING_POSTSCRIPT;
|
---|
100 | extern const char *PRINT_SPOOLING_POSTSCRIPT;
|
---|
101 | extern const char *PRINT_FAILED;
|
---|
102 |
|
---|
103 |
|
---|
104 | #endif // __MESSAGES_H
|
---|