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 | #include "messages.h" |
---|
36 | |
---|
37 | // Dynamic menu items |
---|
38 | extern const char *MENU_CLEAR_LIST = "MENU_CLEAR_LIST"; |
---|
39 | |
---|
40 | // Toolbar hints |
---|
41 | const char *TBHINT_OPEN = "TBHINT_OPEN"; |
---|
42 | const char *TBHINT_PRINT = "TBHINT_PRINT"; |
---|
43 | const char *TBHINT_SHOW_NAV_PANE = "TBHINT_SHOW_NAV_PANE"; |
---|
44 | const char *TBHINT_FIRST_PAGE = "TBHINT_FIRST_PAGE"; |
---|
45 | const char *TBHINT_PREV_PAGE = "TBHINT_PREV_PAGE"; |
---|
46 | const char *TBHINT_NEXT_PAGE = "TBHINT_NEXT_PAGE"; |
---|
47 | const char *TBHINT_LAST_PAGE = "TBHINT_LAST_PAGE"; |
---|
48 | const char *TBHINT_ACTUAL_SIZE = "TBHINT_ACTUAL_SIZE"; |
---|
49 | const char *TBHINT_FIT_WINDOW = "TBHINT_FIT_WINDOW"; |
---|
50 | const char *TBHINT_FIT_WIDTH = "TBHINT_FIT_WIDTH"; |
---|
51 | const char *TBHINT_FIND = "TBHINT_FIND"; |
---|
52 | const char *TBHINT_FINDAGAIN = "TBHINT_FINDAGAIN"; |
---|
53 | const char *TBHINT_ZOOM_IN_OUT = "TBHINT_ZOOM_IN_OUT"; |
---|
54 | // toolbar's page number |
---|
55 | const char *TB_PAGENUM = "TB_PAGENUM"; |
---|
56 | |
---|
57 | |
---|
58 | // Lucide messages |
---|
59 | const char *MSGS_MAIN_WIN_TITLE = "MSGS_MAIN_WIN_TITLE"; |
---|
60 | const char *MSGS_NO_SUIT_PLUG = "MSGS_NO_SUIT_PLUG"; |
---|
61 | const char *MSGS_FILE_LOAD_ERROR = "MSGS_FILE_LOAD_ERROR"; |
---|
62 | const char *MSGS_LOADING_DOCUMENT = "MSGS_LOADING_DOCUMENT"; |
---|
63 | const char *MSGS_CREATING_THUMBNAIL = "MSGS_CREATING_THUMBNAIL"; |
---|
64 | const char *MSGS_WARNING = "MSGS_WARNING"; |
---|
65 | const char *MSGS_OVERWRITE_FILE = "MSGS_OVERWRITE_FILE"; |
---|
66 | const char *MSGS_FILE_SAVE_ERROR = "MSGS_FILE_SAVE_ERROR"; |
---|
67 | const char *MSGS_PAGE = "MSGS_PAGE"; |
---|
68 | const char *MSGS_ERROR_STARTING_BROWSER = "MSGS_ERROR_STARTING_BROWSER"; |
---|
69 | |
---|
70 | const char *MSGS_LDERR = "MSGS_LDERR"; |
---|
71 | const char *MSGS_LDERR_OUT_OF_MEMORY = "MSGS_LDERR_OUT_OF_MEMORY"; |
---|
72 | const char *MSGS_LDERR_OPEN_ERROR = "MSGS_LDERR_OPEN_ERROR"; |
---|
73 | const char *MSGS_LDERR_READ_ERROR = "MSGS_LDERR_READ_ERROR"; |
---|
74 | const char *MSGS_LDERR_DAMAGED = "MSGS_LDERR_DAMAGED"; |
---|
75 | const char *MSGS_LDERR_WRONG_FORMAT = "MSGS_LDERR_WRONG_FORMAT"; |
---|
76 | const char *MSGS_LDERR_ENCRYPTED = "MSGS_LDERR_ENCRYPTED"; |
---|
77 | |
---|
78 | const char *MSGS_RERR_OUT_OF_MEMORY = "MSGS_RERR_OUT_OF_MEMORY"; |
---|
79 | const char *MSGS_RERR_CORRUPTED_PAGE_DATA = "MSGS_RERR_CORRUPTED_PAGE_DATA"; |
---|
80 | const char *MSGS_RERR_FONT_NOT_FOUND = "MSGS_RERR_FONT_NOT_FOUND"; |
---|
81 | |
---|
82 | |
---|
83 | // Settings dialog |
---|
84 | const char *SD_SINGLE_PAGE = "SD_SINGLE_PAGE"; |
---|
85 | const char *SD_CONTINUOUS = "SD_CONTINUOUS"; |
---|
86 | |
---|
87 | // Plugins List columns titles |
---|
88 | const char *PLUGLIST_PLUGIN_NAME = "PLUGLIST_PLUGIN_NAME"; |
---|
89 | const char *PLUGLIST_SUPP_EXTS = "PLUGLIST_SUPP_EXTS"; |
---|
90 | const char *PLUGLIST_PLUGIN_DESC = "PLUGLIST_PLUGIN_DESC"; |
---|
91 | |
---|
92 | // 'Fonts Info' List columns titles |
---|
93 | const char *FONTINFO_NAME = "FONTINFO_NAME"; |
---|
94 | const char *FONTINFO_TYPE = "FONTINFO_TYPE"; |
---|
95 | const char *FONTINFO_EMBEDDED = "FONTINFO_EMBEDDED"; |
---|
96 | // 'Fonts Info' Embedded types |
---|
97 | const char *FONTINFO_EMBED_NOT_EMBEDDED = "FONTINFO_EMBED_NOT_EMBEDDED"; |
---|
98 | const char *FONTINFO_EMBED_EMBEDDED = "FONTINFO_EMBED_EMBEDDED"; |
---|
99 | const char *FONTINFO_EMBED_EMBEDDED_SUBSET = "FONTINFO_EMBED_EMBEDDED_SUBSET"; |
---|
100 | |
---|
101 | |
---|
102 | // "Document info" dialog, Document info keys |
---|
103 | const char *DOCINFO_TITLE = "DOCINFO_TITLE"; |
---|
104 | const char *DOCINFO_FORMAT = "DOCINFO_FORMAT"; |
---|
105 | const char *DOCINFO_AUTHOR = "DOCINFO_AUTHOR"; |
---|
106 | const char *DOCINFO_SUBJECT = "DOCINFO_SUBJECT"; |
---|
107 | const char *DOCINFO_KEYWORDS = "DOCINFO_KEYWORDS"; |
---|
108 | const char *DOCINFO_CREATOR = "DOCINFO_CREATOR"; |
---|
109 | const char *DOCINFO_PRODUCER = "DOCINFO_PRODUCER"; |
---|
110 | const char *DOCINFO_CREATION_DATE = "DOCINFO_CREATION_DATE"; |
---|
111 | const char *DOCINFO_MOD_DATE = "DOCINFO_MOD_DATE"; |
---|
112 | |
---|
113 | // "Find" dialog, other 'find'-related messages |
---|
114 | const char *FIND_SEARCH_PAGE_OF = "FIND_SEARCH_PAGE_OF"; |
---|
115 | const char *FIND_NOT_FOUND = "FIND_NOT_FOUND"; |
---|
116 | |
---|
117 | // 'Go to page' dialog |
---|
118 | const char *GTP_OF = "GTP_OF"; |
---|
119 | |
---|
120 | // Print dialog |
---|
121 | const char *PD_RANGE_EVEN_ODD = "PD_RANGE_EVEN_ODD"; |
---|
122 | const char *PD_RANGE_ODD = "PD_RANGE_ODD"; |
---|
123 | const char *PD_RANGE_EVEN = "PD_RANGE_EVEN"; |
---|
124 | // Printing, other 'print'-related messages |
---|
125 | const char *PD_WRONG_MARGINS = "PD_WRONG_MARGINS"; |
---|
126 | const char *PRINT_PRINTING_PAGE_OF = "PRINT_PRINTING_PAGE_OF"; |
---|
127 | const char *PRINT_GENERATING_POSTSCRIPT = "PRINT_GENERATING_POSTSCRIPT"; |
---|
128 | const char *PRINT_SPOOLING_POSTSCRIPT = "PRINT_SPOOLING_POSTSCRIPT"; |
---|
129 | const char *PRINT_FAILED = "PRINT_FAILED"; |
---|
130 | |
---|