/usr/include/vdkb2/vdkb_locale.h is in vdkbuilder2 2.4.0-4.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | /*
* ===========================
* VDK Builder
* Version 0.1
* Revision 0.0
* November 1998
* ===========================
*
* Copyright (C) 1998,1999 Mario Motta
* Developed by Mario Motta <mmotta@guest.net>
*
* Based on VDK Library
* Copyright (C) 1998, Mario Motta
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
*/
#ifndef _vdkb_locale_h
#define _vdkb_locale_h
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#define FOLDER_WIDGET_TITLES 5
#define MAIN_TOOLBAR_TIPS 7
#define MAIN_TOOLBAR1_TIPS 4
#define MAIN_MENU_PROMPTS 45
#define CONTAINER_WIDGETS_TIPS 14
#define BUTTON_WIDGETS_TIPS 4
#define TEXT_WIDGETS_TIPS 3
#define MISC_WIDGETS_TIPS 13
#define GNOME_WIDGETS_TIPS 3
#define DLG_WIDGETS_TIPS 5
#define ABOUT_DLG_TEXT 5
#define VDKB_STATUS 1
#define STATE_READY 0
#define USER_MESSAGES 13
#define EDITOR_PROMPTS 10
#define PRJMAN_PROMPTS 6
#define PRJ_STATUS 3
#define FILE_DIALOG_PROMPTS 5
#define PRJWIZ_PROMPTS 15
#define VDKBMAKER_PROMPTS 4
#define PRJOPTIONS_PROMPTS 13
#define SEARCH_DIALOG_PROMPTS 21
#define REPLACE_DIALOG_PROMPTS 25
////////////////////////////////
extern char **main_toolbar_pixmaps[];
extern char **main_toolbar1_pixmaps[];
extern char **main_menu_pixmaps[];
extern char *main_toolbar_tips[] ;
extern char *main_toolbar1_tips[] ;
extern char *main_menu_prompts[] ;
extern char *folder_widget_titles[];
extern char **container_widgets_pixmaps[];
extern char *container_widgets_tips[];
extern char **button_widgets_pixmaps[];
extern char *button_widgets_tips[];
extern char **text_widgets_pixmaps[];
extern char *text_widgets_tips[];
extern char **misc_widgets_pixmaps[];
extern char *misc_widgets_tips[];
extern char **gnome_widgets_pixmaps[];
extern char *gnome_widgets_tips[];
extern char **xdb_widgets_pixmaps[];
extern char *xdb_widgets_tips[];
extern char **dlg_widgets_pixmaps[];
extern char *dlg_widgets_tips[];
/////////////////////////////////
extern char *user_messages[];
extern char *about_dlg_text[];
extern char *vdkb_status[];
extern char *editor_prompts[];
extern char *prjman_prompts[];
extern char **prjman_pixmaps[];
extern char *prj_status[];
extern char *file_dialog_prompts[];
extern char *prjwiz_prompts[];
extern char *vdkbmaker_prompts[];
extern char *prjoptions_prompts[];
extern char *search_dialog_prompts[];
extern char *replace_dialog_prompts[];
void
LoadInternational(int language, char* home);
void
FreeInternational();
// user messages
enum
{
user_can_close = 0,
user_ok,
user_no,
user_cancel,
user_nodefaults,
user_request_save,
user_unknown_unit,
user_unknown_unit1,
user_cant_close,
user_cant_load_project,
user_incorrect_project,
user_cant_remove_unit,
user_dup_unit
};
#endif
|