message.h (348:5841de0daf2d) message.h (621:37445ada73e4)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *

--- 57 unchanged lines hidden (view full) ---

66#define ABS_PATH_REQ gettext("path is not absolute: %s\n")
67
68#define TOO_LONG gettext("the following line is too long (> %d chars)\n\t%s\n")
69
70#define NOT_ON_SPARC gettext("this operation is not supported on sparc\n")
71
72#define NEED_ALT_ROOT gettext("an alternate root must be specified\n")
73
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *

--- 57 unchanged lines hidden (view full) ---

66#define ABS_PATH_REQ gettext("path is not absolute: %s\n")
67
68#define TOO_LONG gettext("the following line is too long (> %d chars)\n\t%s\n")
69
70#define NOT_ON_SPARC gettext("this operation is not supported on sparc\n")
71
72#define NEED_ALT_ROOT gettext("an alternate root must be specified\n")
73
74#define ALT_ROOT_INVALID \
75 gettext("an alternate root (%s) cannot be used with this sub-command\n")
76
74#define NO_FILE_ENTRY gettext("file not in list: %s\n")
75
76#define DUP_FILE_ENTRY gettext("file already in list: %s\n")
77
78#define NO_ENTRY gettext("no %s entry found\n")
79
80#define NO_MATCH_ENTRY gettext("no matching entry found\n")
81
82#define NO_BOOTADM_MATCH gettext("no matching bootadm entry found\n")
83
84#define NO_MEM gettext("could not allocate memory: size = %u\n")
85
77#define NO_FILE_ENTRY gettext("file not in list: %s\n")
78
79#define DUP_FILE_ENTRY gettext("file already in list: %s\n")
80
81#define NO_ENTRY gettext("no %s entry found\n")
82
83#define NO_MATCH_ENTRY gettext("no matching entry found\n")
84
85#define NO_BOOTADM_MATCH gettext("no matching bootadm entry found\n")
86
87#define NO_MEM gettext("could not allocate memory: size = %u\n")
88
89#define CANNOT_LOCATE_GRUB_MENU gettext("cannot find GRUB menu\n")
90
91#define GRUB_MENU_DEVICE \
92 gettext("The location for the active GRUB menu is: %s (not mounted)\n")
93
94#define GRUB_MENU_FSTYPE \
95 gettext("The filesystem type of the menu device is <%s>\n")
96
97#define GRUB_MENU_PATH gettext("The location for the active GRUB menu is: %s\n")
98
99#define STUBBOOT_DIR_NOT_FOUND gettext("cannot find stubboot directory\n")
100
86#define NO_CMD gettext("no command at line %d\n")
87
88#define DUP_CMD \
89 gettext("duplicate command %s at line %d of %sboot/grub/menu.lst\n")
90
91#define INVALID_TIMEOUT gettext("invalid timeout value: %s\n")
92
93#define NO_MENU gettext("menu file not found: %s\n")

--- 168 unchanged lines hidden (view full) ---

262#define CHOWN_FAIL gettext("chgrp operation on %s failed - %s\n")
263
264#define MISSING_SLICE_FILE gettext("GRUB slice file %s missing: %s\n")
265
266#define BAD_SLICE_FILE gettext("Invalid GRUB slice file %s\n")
267
268#define MKDIR_FAILED gettext("mkdir of %s failed: %s\n")
269
101#define NO_CMD gettext("no command at line %d\n")
102
103#define DUP_CMD \
104 gettext("duplicate command %s at line %d of %sboot/grub/menu.lst\n")
105
106#define INVALID_TIMEOUT gettext("invalid timeout value: %s\n")
107
108#define NO_MENU gettext("menu file not found: %s\n")

--- 168 unchanged lines hidden (view full) ---

277#define CHOWN_FAIL gettext("chgrp operation on %s failed - %s\n")
278
279#define MISSING_SLICE_FILE gettext("GRUB slice file %s missing: %s\n")
280
281#define BAD_SLICE_FILE gettext("Invalid GRUB slice file %s\n")
282
283#define MKDIR_FAILED gettext("mkdir of %s failed: %s\n")
284
270#define MOUNT_FAILED gettext("mount of %s (fstype %s) at %s failed\n")
285#define MOUNT_FAILED gettext("mount of %s (fstype %s) failed\n")
271
286
287#define MOUNT_MNTPT_FAILED gettext("mount at %s failed\n")
288
272#define RMDIR_FAILED gettext("rmdir of %s failed: %s\n")
273
274#define UMOUNT_FAILED gettext("unmount of %s failed\n")
275
276#define CANNOT_RESTORE_GRUB_SLICE gettext("cannot restore GRUB slice\n")
277
278#define RESTORE_GRUB_FAILED gettext("cannot restore GRUB loader\n")
279
280#define MISSING_BACKUP_MENU gettext("no backup menu %s: %s\n")
281
282#define RESTORE_MENU_FAILED gettext("cannot restore menu %s\n")
283
284#define MISSING_ROOT_FILE gettext("file missing: %s: %s\n")
285
286#define BAD_ROOT_FILE gettext("file is invalid: %s\n")
287
289#define RMDIR_FAILED gettext("rmdir of %s failed: %s\n")
290
291#define UMOUNT_FAILED gettext("unmount of %s failed\n")
292
293#define CANNOT_RESTORE_GRUB_SLICE gettext("cannot restore GRUB slice\n")
294
295#define RESTORE_GRUB_FAILED gettext("cannot restore GRUB loader\n")
296
297#define MISSING_BACKUP_MENU gettext("no backup menu %s: %s\n")
298
299#define RESTORE_MENU_FAILED gettext("cannot restore menu %s\n")
300
301#define MISSING_ROOT_FILE gettext("file missing: %s: %s\n")
302
303#define BAD_ROOT_FILE gettext("file is invalid: %s\n")
304
288#define USING_GRUB_SLICE gettext("\nUsing GRUB menu on device %s\n\n")
289
290#define RESTORING_GRUB \
291 gettext("No GRUB installation found. Restoring GRUB from backup\n")
292
293#define REBOOT_WITH_ARGS_FAILED \
294 gettext("Cannot update menu. Cannot reboot with requested arguments\n")
295
296#ifdef __cplusplus
297}
298#endif
299
300#endif /* _MESSAGE_H */
305#define RESTORING_GRUB \
306 gettext("No GRUB installation found. Restoring GRUB from backup\n")
307
308#define REBOOT_WITH_ARGS_FAILED \
309 gettext("Cannot update menu. Cannot reboot with requested arguments\n")
310
311#ifdef __cplusplus
312}
313#endif
314
315#endif /* _MESSAGE_H */