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 | extern const char *MSGS_PAGE; |
---|
64 | |
---|
65 | // Settings dialog |
---|
66 | extern const char *SD_SINGLE_PAGE; |
---|
67 | extern const char *SD_CONTINUOUS; |
---|
68 | |
---|
69 | // Plugins List columns titles |
---|
70 | extern const char *PLUGLIST_PLUGIN_NAME; |
---|
71 | extern const char *PLUGLIST_SUPP_EXTS; |
---|
72 | extern const char *PLUGLIST_PLUGIN_DESC; |
---|
73 | |
---|
74 | // 'Fonts Info' List columns titles |
---|
75 | extern const char *FONTINFO_NAME; |
---|
76 | extern const char *FONTINFO_TYPE; |
---|
77 | extern const char *FONTINFO_EMBEDDED; |
---|
78 | // 'Fonts Info' Embedded types |
---|
79 | extern const char *FONTINFO_EMBED_NOT_EMBEDDED; |
---|
80 | extern const char *FONTINFO_EMBED_EMBEDDED; |
---|
81 | extern const char *FONTINFO_EMBED_EMBEDDED_SUBSET; |
---|
82 | |
---|
83 | |
---|
84 | // "Document info" dialog, Document info keys |
---|
85 | extern const char *DOCINFO_TITLE; |
---|
86 | extern const char *DOCINFO_FORMAT; |
---|
87 | extern const char *DOCINFO_AUTHOR; |
---|
88 | extern const char *DOCINFO_SUBJECT; |
---|
89 | extern const char *DOCINFO_KEYWORDS; |
---|
90 | extern const char *DOCINFO_CREATOR; |
---|
91 | extern const char *DOCINFO_PRODUCER; |
---|
92 | extern const char *DOCINFO_CREATION_DATE; |
---|
93 | extern const char *DOCINFO_MOD_DATE; |
---|
94 | |
---|
95 | // "Find" dialog, other 'find'-related messages |
---|
96 | extern const char *FIND_SEARCH_PAGE_OF; |
---|
97 | extern const char *FIND_NOT_FOUND; |
---|
98 | |
---|
99 | // 'Go to page' dialog |
---|
100 | extern const char *GTP_OF; |
---|
101 | |
---|
102 | // Printing, other 'print'-related messages |
---|
103 | extern const char *PD_WRONG_MARGINS; |
---|
104 | extern const char *PRINT_PRINTING_PAGE_OF; |
---|
105 | extern const char *PRINT_GENERATING_POSTSCRIPT; |
---|
106 | extern const char *PRINT_SPOOLING_POSTSCRIPT; |
---|
107 | extern const char *PRINT_FAILED; |
---|
108 | |
---|
109 | |
---|
110 | #endif // __MESSAGES_H |
---|