15c51f124SMoriah Waterland /* 25c51f124SMoriah Waterland * CDDL HEADER START 35c51f124SMoriah Waterland * 45c51f124SMoriah Waterland * The contents of this file are subject to the terms of the 55c51f124SMoriah Waterland * Common Development and Distribution License (the "License"). 65c51f124SMoriah Waterland * You may not use this file except in compliance with the License. 75c51f124SMoriah Waterland * 85c51f124SMoriah Waterland * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 95c51f124SMoriah Waterland * or http://www.opensolaris.org/os/licensing. 105c51f124SMoriah Waterland * See the License for the specific language governing permissions 115c51f124SMoriah Waterland * and limitations under the License. 125c51f124SMoriah Waterland * 135c51f124SMoriah Waterland * When distributing Covered Code, include this CDDL HEADER in each 145c51f124SMoriah Waterland * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 155c51f124SMoriah Waterland * If applicable, add the following below this CDDL HEADER, with the 165c51f124SMoriah Waterland * fields enclosed by brackets "[]" replaced with your own identifying 175c51f124SMoriah Waterland * information: Portions Copyright [yyyy] [name of copyright owner] 185c51f124SMoriah Waterland * 195c51f124SMoriah Waterland * CDDL HEADER END 205c51f124SMoriah Waterland */ 215c51f124SMoriah Waterland 225c51f124SMoriah Waterland /* 23*6e1ae2a3SGary Pennington * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. 245c51f124SMoriah Waterland */ 255c51f124SMoriah Waterland 265c51f124SMoriah Waterland #ifndef _MESSAGES_H 275c51f124SMoriah Waterland #define _MESSAGES_H 285c51f124SMoriah Waterland 295c51f124SMoriah Waterland 305c51f124SMoriah Waterland /* 315c51f124SMoriah Waterland * Module: messages 325c51f124SMoriah Waterland * Group: pkg commands 335c51f124SMoriah Waterland * Description: l10n strings for all pkg commands 345c51f124SMoriah Waterland */ 355c51f124SMoriah Waterland 365c51f124SMoriah Waterland #ifdef __cplusplus 375c51f124SMoriah Waterland extern "C" { 385c51f124SMoriah Waterland #endif 395c51f124SMoriah Waterland 405c51f124SMoriah Waterland #define MSG_MAX 1024 415c51f124SMoriah Waterland #define MAXARGS 100 425c51f124SMoriah Waterland #define MAX_CAT_ARGS 64 435c51f124SMoriah Waterland 445c51f124SMoriah Waterland /* BEGIN CSTYLED */ 455c51f124SMoriah Waterland 465c51f124SMoriah Waterland /* 475c51f124SMoriah Waterland * I18N: these messages are questions asked of the user 485c51f124SMoriah Waterland */ 495c51f124SMoriah Waterland 505c51f124SMoriah Waterland #define ASK_CONFIRM gettext("Do you want to remove this package?") 515c51f124SMoriah Waterland #define ASK_CONT gettext("Do you want to continue with the installation of <%s>") 525c51f124SMoriah Waterland #define ASK_CONTINUE_ADD gettext("Do you want to continue with package installation?") 535c51f124SMoriah Waterland #define ASK_CONTINUE_RM gettext("Do you want to continue with package removal?") 545c51f124SMoriah Waterland #define ASK_PKGREMOVE_CONTINUE gettext("Do you want to continue with the removal of this package") 555c51f124SMoriah Waterland #define ASK_PKGRMCHK_CONT gettext("Do you want to continue with the removal of <%s>") 565c51f124SMoriah Waterland 575c51f124SMoriah Waterland /* 585c51f124SMoriah Waterland * I18N: these messages are debugging message and are only displayed 595c51f124SMoriah Waterland * when special debugging output has been enabled - these messages 605c51f124SMoriah Waterland * will never be displayed during normal product usage 615c51f124SMoriah Waterland */ 625c51f124SMoriah Waterland 635c51f124SMoriah Waterland #define DBG_ADDPACKAGES_ARGS gettext("npkgs <%d> uri <%s> stream device <%s> repeat <%d> altBinDir <%s> device <%s>") 645c51f124SMoriah Waterland #define DBG_ADDPACKAGES_ENTRY gettext("add_packages:") 655c51f124SMoriah Waterland #define DBG_ADDPACKAGES_GZ_NO_LZ_ARGS gettext("npkgs <%d> uri <%s> stream device <%s> repeat <%d> device <%s>") 665c51f124SMoriah Waterland #define DBG_ADDPACKAGES_GZ_NO_LZ_ENTRY gettext("add_pkgs_in_gz_no_zones: adding packages in global zone with NO non-global zones") 675c51f124SMoriah Waterland #define DBG_ADDPACKAGES_GZ_W_LZ_ARGS gettext("npkgs <%d> uri <%s> stream device <%s> repeat <%d> device <%s>") 685c51f124SMoriah Waterland #define DBG_ADDPACKAGES_GZ_W_LZ_ENTRY gettext("add_pkgs_in_gz_with_zones: adding packages in global zone with non-global zones present") 695c51f124SMoriah Waterland #define DBG_ADDPACKAGES_LZ_ARGS gettext("npkgs <%d> uri <%s> stream device <%s> repeat <%d> device <%s>") 705c51f124SMoriah Waterland #define DBG_ADDPACKAGES_LZ_ENTRY gettext("add_pkgs_in_lz: adding packages in non-global zone") 715c51f124SMoriah Waterland #define DBG_ARG gettext("argument <%d> = <%s>") 725c51f124SMoriah Waterland #define DBG_BOOTCHECKINSTALLINZONES_ARGS gettext("ids <%s> admin <%s> tempdir <%s>") 735c51f124SMoriah Waterland #define DBG_BOOTCHECKINSTALLINZONES_ENTRY gettext("boot_and_check_install_in_zones:") 745c51f124SMoriah Waterland #define DBG_BOOTING_ZONE gettext("booting up non-running zone <%s>") 755c51f124SMoriah Waterland #define DBG_BOOTINSTALLINZONES_ARGS gettext("ids <%s> admin <%s> tempdir <%s>") 765c51f124SMoriah Waterland #define DBG_BOOTINSTALLINZONES_ENTRY gettext("boot_and_install_in_zones:") 775c51f124SMoriah Waterland #define DBG_BRANDS_ARE_IMPLEMENTED gettext("brands are implemented") 785c51f124SMoriah Waterland #define DBG_BRANDS_NOT_IMPLEMENTED gettext("brands are NOT implemented") 795c51f124SMoriah Waterland #define DBG_CANNOT_GET_PKGLIST gettext("unable to get package list") 805c51f124SMoriah Waterland #define DBG_CHECKAPP_ARGS gettext("package <%s> directory <%s> rootpath <%s>") 815c51f124SMoriah Waterland #define DBG_CHECKAPP_ENTRY gettext("check install applicability:") 825c51f124SMoriah Waterland #define DBG_CHECKAPP_THISZONE_INSTREQ gettext("WARNING: the package <%s> to be installed does not contain a request script, but the currently installed instance (package <%s>) does contain a request script, so the package to be installed can only be installed in the current zone, and will not be installed in any future zones created.") 835c51f124SMoriah Waterland #define DBG_CHECKAPP_THISZONE_REQUEST gettext("WARNING: package <%s> contains a request script, and can only be installed in the current zone, and will not be installed in any future zones created.") 845c51f124SMoriah Waterland #define DBG_CHECKINSTALL_IN_ZONE gettext("checking install of package <%s> in zone <%s> from stream <%s>") 855c51f124SMoriah Waterland #define DBG_CHECKREMOVE_PKG_IN_ZONE gettext("verifying package <%s> dependencies in zone <%s>") 865c51f124SMoriah Waterland #define DBG_CLOSING_STREAM gettext("closing datastream <%s> at <%s>") 875c51f124SMoriah Waterland #define DBG_CONVERTING_PKG gettext("converting package <%s/%s> to stream <%s>") 885c51f124SMoriah Waterland #define DBG_COPY_FILE gettext("copy <%s> to <%s>") 895c51f124SMoriah Waterland #define DBG_CPPATH_ENTRY gettext("copy path: control <0x%02x> mode <0%04lo> source <%s> destination <%s>") 905c51f124SMoriah Waterland #define DBG_CREATED_ZONE_ADMINFILE gettext("created temporary zone administration file <%s>") 915c51f124SMoriah Waterland #define DBG_CREATED_ZONE_TEMPDIR gettext("created temporary zone directory <%s>") 925c51f124SMoriah Waterland #define DBG_CREATE_ZONE_ADMINFILE gettext("create temporary zone administration file in directory <%s> template <%s>") 935c51f124SMoriah Waterland #define DBG_CREATE_ZONE_TEMPDIR gettext("create temporary zone directory in temporary directory <%s>") 945c51f124SMoriah Waterland #define DBG_DEPCHK_COLLECT_ERROR gettext("dependency report error: ign <null> ret <%d> package <%s> msg <%s>") 955c51f124SMoriah Waterland #define DBG_DEPCHK_COLLECT_IGNORE gettext("dependency report error: ign <null> no check function package <%s> msg <%s>") 965c51f124SMoriah Waterland #define DBG_DEPCHK_ENTRY gettext("depchkReportErrors:") 975c51f124SMoriah Waterland #define DBG_DEPCHK_IGNORE_ERROR gettext("dependency report error: ign <%s> no check function package <%s> msg <%s>") 985c51f124SMoriah Waterland #define DBG_DEPCHK_RECORD_ERROR gettext("dependency record error: erc <0x%08lx> add first package <%s> zone <%s> value <%s>") 995c51f124SMoriah Waterland #define DBG_DEPCHK_RECORD_PERROR gettext("dependency record error: erc <0x%08lx> add package <%d> <%s> zone <%s> value <%s>") 1005c51f124SMoriah Waterland #define DBG_DEPCHK_RECORD_ZERROR gettext("dependency record error: erc <0x%08lx> add zone <%s> value <%s> to existing package <%s> # <%d> zones[0] <%s>") 1015c51f124SMoriah Waterland #define DBG_DEPCHK_REPORT_ERROR gettext("dependency report error: ign <%s> ret <%d> package <%s> msg <%s>") 1025c51f124SMoriah Waterland #define DBG_DOMERG_NOT_THERE gettext("object does not exist or has incorrect contents: type <%c> class <%s> path <%s>") 1035c51f124SMoriah Waterland #define DBG_DOMERG_NOT_WRITABLE gettext("object not writable or cannot be created: type <%c> class <%s> path <%s>") 1045c51f124SMoriah Waterland #define DBG_DOMERG_NO_SUCH_FILE gettext("file does not exist or has incorrect contents: type <%c> class <%s> path <%s>") 1055c51f124SMoriah Waterland #define DBG_DOREMOVE_ARGS gettext("found package <%s> name <%s> arch <%s> version <%s> basedir <%s> catg <%s> status <%d>\n") 1065c51f124SMoriah Waterland #define DBG_DOREMOVE_ENTRY gettext("doremove:") 1075c51f124SMoriah Waterland #define DBG_DOREMOVE_INTERRUPTED gettext("interrupted: package <%s> not installed") 1085c51f124SMoriah Waterland #define DBG_DO_EXEC_REQUEST_USER gettext("running request script <%s> output <%s> as user <%s> i.d. <%ld> group <%s> i.d. <%ld>") 1095c51f124SMoriah Waterland #define DBG_ENTRY_IN_GZ gettext("[<%s> in global zone]") 1105c51f124SMoriah Waterland #define DBG_ENTRY_IN_LZ gettext("[<%s> in non-global zone <%ld>:<%s>]") 1115c51f124SMoriah Waterland #define DBG_EXIT_WITH_CODE gettext("exiting with code <%d>") 1125c51f124SMoriah Waterland #define DBG_FINALCK_ERROR gettext("final check (error): attrchg <%d> contchg <%d> ftype <%c> path <%s>") 1135c51f124SMoriah Waterland #define DBG_FINALCK_ERROR_AVERIFY gettext("final check (error): attribute verification = <%d>") 1145c51f124SMoriah Waterland #define DBG_FINALCK_ERROR_CVERIFY gettext("final check (error): content verification = <%d>") 1155c51f124SMoriah Waterland #define DBG_FINALCK_EXIT gettext("final check (return): error <%d> type <%c> path <%s>") 1165c51f124SMoriah Waterland #define DBG_FINALCK_WARNING gettext("final check (warning): attrchg <%d> contchg <%d> ftype <%c> path <%s>") 1175c51f124SMoriah Waterland #define DBG_FINALCK_WARNING_AVERIFY gettext("final check (warning): attribute verification = <%d>") 1185c51f124SMoriah Waterland #define DBG_FINALCK_WARNING_CVERIFY gettext("final check (warning): content verification = <%d>") 1195c51f124SMoriah Waterland #define DBG_GETPKGLIST_ARGS gettext("stream device <%s> directory <%s> repeat <%d>") 1205c51f124SMoriah Waterland #define DBG_GETPKGLIST_ENTRY gettext("get_package_list:") 1215c51f124SMoriah Waterland #define DBG_INSTALLING_TO_SPOOL gettext("installing packages to spool directory <%s>") 1225c51f124SMoriah Waterland #define DBG_INSTALLINZONES_ARGS gettext("ids <%s> admin <%s> tempdir <%s>") 1235c51f124SMoriah Waterland #define DBG_INSTALLINZONES_ENTRY gettext("install_in_zones:") 1245c51f124SMoriah Waterland #define DBG_INSTALL_FLAG_VALUES gettext("%s: admnflag <%d> doreboot <%d> failflag <%d> interrupted <%d> intrflag <%d> ireboot <%d> needconsult <%d> nullflag <%d> warnflag <%d>") 1255c51f124SMoriah Waterland #define DBG_INSTALL_IN_ZONE gettext("installing package <%s> in zone <%s> from stream <%s>") 1265c51f124SMoriah Waterland #define DBG_INSTALL_SKIP_THISZONE gettext("skipping installation of package <%s>: marked this zone only") 1275c51f124SMoriah Waterland #define DBG_INSTINONEZONE_ARGS gettext("zone <%s> ids <%s> admin <%s> tempdir <%s> altbindir <%s>") 1285c51f124SMoriah Waterland #define DBG_INSTINONEZONE_ENTRY gettext("install_in_one_zone:") 129*6e1ae2a3SGary Pennington #define DBG_INSTVOL_CAS_INFO gettext("is partial <%d> updated <%s>\n") 1305c51f124SMoriah Waterland #define DBG_INSTVOL_NOT_RUNNING_CAS gettext("not running zone <%s> object <%s> class <%s> action script <%s>") 1315c51f124SMoriah Waterland #define DBG_INSTVOL_OBJ_LOCAL gettext("objects local <%s>") 1325c51f124SMoriah Waterland #define DBG_INSTVOL_OBJ_UPDATED gettext("objects updated <%s>") 1335c51f124SMoriah Waterland #define DBG_INSTVOL_RUNNING_CAS gettext("running zone <%s> object <%s> class <%s> action script <%s>") 1345c51f124SMoriah Waterland #define DBG_IN_GZ_NO_LZ gettext("running in global zone with NO non-global zones") 1355c51f124SMoriah Waterland #define DBG_IN_GZ_WITH_LZ gettext("running in global zone with non-global zones") 1365c51f124SMoriah Waterland #define DBG_IN_LZ gettext("running in non-global zone") 1375c51f124SMoriah Waterland #define DBG_MERGINFOS_ASK_BASEDIR gettext("merg_pkginfos: ask for BASEDIR change later") 1385c51f124SMoriah Waterland #define DBG_MERGINFOS_ENTRY gettext("merg_pkginfos: installed pkginfo <%s>") 1395c51f124SMoriah Waterland #define DBG_MERGINFOS_EXIT gettext("merg_pkginfos: done changing <%s> result <%d>") 1405c51f124SMoriah Waterland #define DBG_MERGINFOS_SET_BASEDIR gettext("merg_pkginfos: set BASEDIR to <%s>") 1415c51f124SMoriah Waterland #define DBG_MERGINFOS_SET_CHANGE gettext("merg_pkginfos: change existing attribute <%s> from <%s> to <%s>") 1425c51f124SMoriah Waterland #define DBG_MERGINFOS_SET_CLASSES gettext("merg_pkginfos: set CLASSES to <%s>") 1435c51f124SMoriah Waterland #define DBG_MERGINFOS_SET_DUPLICATE gettext("merg_pkginfos: set existing attribute <%s> to current value <%s>") 1445c51f124SMoriah Waterland #define DBG_MERGINFOS_RETAIN_OLD gettext("merg_pkginfos: retain existing attribute <%s> value <%s>") 1455c51f124SMoriah Waterland #define DBG_MERGINFOS_SET_TO gettext("merg_pkginfos: validate change attribute <%s> from <%s>") 1465c51f124SMoriah Waterland #define DBG_MERGINFO_ATTRCOMP gettext("merginfo: attribute <%s> currently set to <%s>") 1475c51f124SMoriah Waterland #define DBG_MERGINFO_DIFFERENT gettext("merginfo: pkginfo file source <%s> different than merged <%s>: open source pkginfo file") 1485c51f124SMoriah Waterland #define DBG_MERGINFO_ENTRY gettext("merginfo: instdir <%s> get_inst_root() <%s> saveSpoolInstallDir <%s> pkgloc <%s> is_spool_create <%d> get_info_basedir() <%s> installed pkginfo <%s> merged pkginfo <%s>") 1495c51f124SMoriah Waterland #define DBG_MERGINFO_EXCLUDING gettext("merginfo: excluding attribute <%s>") 1505c51f124SMoriah Waterland #define DBG_MERGINFO_FINAL gettext("merginfo: accepting attribute <%s>") 1515c51f124SMoriah Waterland #define DBG_MERGINFO_GREATER_THAN gettext("merginfo: attribute <%s> greater than last entry <%s>") 1525c51f124SMoriah Waterland #define DBG_MERGINFO_LESS_THAN gettext("merginfo: attribute <%s> less than first entry <%s>") 1535c51f124SMoriah Waterland #define DBG_MERGINFO_SAME gettext("merginfo: pkginfo file source and merged <%s> identical: no source pkginfo file used") 1545c51f124SMoriah Waterland #define DBG_MERGINFO_SEARCHING gettext("merginfo: attribute <%s> within range of <%s> and <%s>: searching") 1555c51f124SMoriah Waterland #define DBG_NUM_PKGS_TO_ADD gettext("number of packages to add <%d>") 1565c51f124SMoriah Waterland #define DBG_NUM_PKGS_TO_REMOVE gettext("number of packages to remove <%d> longest package name length <%d>") 1575c51f124SMoriah Waterland #define DBG_ODS_ARGS gettext("bdevice <%s> cdevice <%s> pathname <%s> argc <%d> spool-device <%s>") 1585c51f124SMoriah Waterland #define DBG_ODS_DATASTREAM_BDEV gettext("package source is block device <%s>") 1595c51f124SMoriah Waterland #define DBG_ODS_DATASTREAM_CDEV gettext("package source is character device <%s>") 1605c51f124SMoriah Waterland #define DBG_ODS_DATASTREAM_INIT gettext("initializing package datastream <%s>") 1615c51f124SMoriah Waterland #define DBG_ODS_DATASTREAM_ISFILE gettext("package source is ordinary file <%s>") 1625c51f124SMoriah Waterland #define DBG_ODS_DATASTREAM_MOUNTING gettext("mounting package datastream device <%s> on <%s>") 1635c51f124SMoriah Waterland #define DBG_ODS_DATASTREAM_UNK gettext("package source not contained in a recognized datastream") 1645c51f124SMoriah Waterland #define DBG_ODS_ENTRY gettext("open_package_datastream:") 1655c51f124SMoriah Waterland #define DBG_PKGADD_ADMINFILE gettext("using admin file <%s>") 1665c51f124SMoriah Waterland #define DBG_PKGADD_CKRETURN gettext("check return code <%d> package <%s> function <add packages>") 1675c51f124SMoriah Waterland #define DBG_PKGADD_ENABLING_HOLLOW gettext("enabling hollow package support") 1685c51f124SMoriah Waterland #define DBG_PKGADD_HOLLOW_ENABLED gettext("hollow package support is enabled") 1695c51f124SMoriah Waterland #define DBG_PKGADD_PKGPATHS gettext("locations set: pkg <%s> adm <%s>") 1705c51f124SMoriah Waterland #define DBG_PKGADD_RESPFILE gettext("using response file <%s> directory <%s>") 1715c51f124SMoriah Waterland #define DBG_PKGADD_TMPDIR gettext("using temporary directory <%s>") 1725c51f124SMoriah Waterland #define DBG_PKGDBMRG_INHERITED gettext("path inherited and assumed correct: <%s>") 1735c51f124SMoriah Waterland #define DBG_PKGINSTALL_ADMINFILE gettext("using admin file <%s>") 1745c51f124SMoriah Waterland #define DBG_PKGINSTALL_ARGS gettext("package <%s> dirname <%s> bdevice <%s> mount <%s> ir <%s> idsName <%s> pkgdir <%s>") 1755c51f124SMoriah Waterland #define DBG_PKGINSTALL_COC_DBUPD gettext("skipping checkinstall package <%s> script <%s> zone <%s> (db update only)") 1765c51f124SMoriah Waterland #define DBG_PKGINSTALL_COC_NODEL gettext("skipping checkinstall package <%s> script <%s> zone <%s> (nodelete)") 1775c51f124SMoriah Waterland #define DBG_PKGINSTALL_COC_NONE gettext("no checkinstall in package <%s> script <%s> zone <%s>") 1785c51f124SMoriah Waterland #define DBG_PKGINSTALL_DS_ISFILE gettext("package source <%s> is an ordinary file - treating as a package data stream") 1795c51f124SMoriah Waterland #define DBG_PKGINSTALL_ENTRY gettext("pkgInstall:") 1805c51f124SMoriah Waterland #define DBG_PKGINSTALL_EXECOC_GZ gettext("executing checkinstall package <%s> script <%s>") 1815c51f124SMoriah Waterland #define DBG_PKGINSTALL_EXECOC_LZ gettext("executing checkinstall package <%s> script <%s> zone <%s>") 1825c51f124SMoriah Waterland #define DBG_PKGINSTALL_EXEPIC_GZ gettext("executing postinstall package <%s> script <%s>") 1835c51f124SMoriah Waterland #define DBG_PKGINSTALL_EXEPIC_LZ gettext("executing postinstall package <%s> script <%s> zone <%s>") 1845c51f124SMoriah Waterland #define DBG_PKGINSTALL_EXEPOC_GZ gettext("executing preinstall package <%s> script <%s>") 1855c51f124SMoriah Waterland #define DBG_PKGINSTALL_EXEPOC_LZ gettext("executing preinstall package <%s> script <%s> zone <%s>") 1865c51f124SMoriah Waterland #define DBG_PKGINSTALL_HAS_LOCKFILE gettext("before removing package <%s> found existing lockfile <%s> zone <%s>") 187*6e1ae2a3SGary Pennington #define DBG_PKGINSTALL_INSDONE gettext("install completed: hollow support <%d> is hollow <%d> fresh install <%d> updated <%s> script <%s> access <%d>") 1885c51f124SMoriah Waterland #define DBG_PKGINSTALL_POCALT_NONE gettext("no pkgbin preinstall package <%s> script <%s> zone <%s>") 1895c51f124SMoriah Waterland #define DBG_PKGINSTALL_POC_DBUPD gettext("skipping preinstall package <%s> script <%s> zone <%s> (db update only)") 1905c51f124SMoriah Waterland #define DBG_PKGINSTALL_POC_NONE gettext("has no media preinstall package <%s> script <%s> zone <%s>") 1915c51f124SMoriah Waterland #define DBG_PKGINSTALL_POIS_DBUPD gettext("skipping postinstall package <%s> script <%s> zone <%s> (db update only)") 1925c51f124SMoriah Waterland #define DBG_PKGINSTALL_POIS_NONE gettext("no postinstall in package <%s> script <%s> zone <%s>") 1935c51f124SMoriah Waterland #define DBG_PKGINSTALL_POIS_NOPATH gettext("no postinstall in package <%s> zone <%s>") 194*6e1ae2a3SGary Pennington #define DBG_PKGINSTALL_POIS_NOUPDATING gettext("no objects updated when installing in zone <%s>: skipping postinstall package <%s> script <%s>") 1955c51f124SMoriah Waterland #define DBG_PKGINSTALL_PREINSCHK gettext("preinstallation check of package <%s> zone <%s>") 1965c51f124SMoriah Waterland #define DBG_PKGINSTALL_PREINSCHK_OK gettext("preinstall check successful") 1975c51f124SMoriah Waterland #define DBG_PKGINSTALL_RSCRIPT_IS_ROOT gettext("request script run as root = <%d>") 1985c51f124SMoriah Waterland #define DBG_PKGINSTALL_RSCRIPT_NOT_SET gettext("admin file parameter <%s> is not set") 1995c51f124SMoriah Waterland #define DBG_PKGINSTALL_RSCRIPT_SET_TO gettext("admin file parameter <%s> is set to <%s>") 2005c51f124SMoriah Waterland #define DBG_PKGINSTALL_TMPDIR gettext("using temporary directory <%s>") 2015c51f124SMoriah Waterland #define DBG_PKGLIST_ERROR gettext("unable to get package list from device <%s> directory <%s>: fatal error <%d>") 2025c51f124SMoriah Waterland #define DBG_PKGLIST_NONFOUND gettext("unable to get package list from device <%s> directory <%s>: no packages found") 2035c51f124SMoriah Waterland #define DBG_PKGLIST_RM_ERROR gettext("unable to get package list from directory <%s>: fatal error <%d>") 2045c51f124SMoriah Waterland #define DBG_PKGLIST_RM_NONFOUND gettext("unable to get package list from directory <%s>: no packages found") 2055c51f124SMoriah Waterland #define DBG_PKGOPS_ADDED_GZPKG gettext("added package <%s> to global zone only file") 2065c51f124SMoriah Waterland #define DBG_PKGOPS_ADDGZPKG gettext("add package <%s> to global zone only file at <%s>") 2075c51f124SMoriah Waterland #define DBG_PKGOPS_ADD_TZP gettext("add package entry <%d> instance <%s> as this zone only") 2085c51f124SMoriah Waterland #define DBG_PKGOPS_CKSUM_MISMATCH gettext("checksum <%s>:<0x%08lx> does not match <%s>:<0x%08lx>") 2095c51f124SMoriah Waterland #define DBG_PKGOPS_EDITABLE_EXISTS gettext("editable file <%s> exists: ok") 2105c51f124SMoriah Waterland #define DBG_PKGOPS_GETPKGLIST_ARGS gettext("directory <%s> category <%s>") 2115c51f124SMoriah Waterland #define DBG_PKGOPS_GETPKGLIST_ENTRY gettext("pkgGetPackageList:") 2125c51f124SMoriah Waterland #define DBG_PKGOPS_GPKGLIST_CATFAILED gettext("no packages found for category <%s>") 2135c51f124SMoriah Waterland #define DBG_PKGOPS_GPKGLIST_CATOK gettext("successfully generated package list for category <%s>") 2145c51f124SMoriah Waterland #define DBG_PKGOPS_GPKGLIST_EINTR gettext("search interrupted looking for packages from list of packages specified") 2155c51f124SMoriah Waterland #define DBG_PKGOPS_GPKGLIST_ENOPKG gettext("no packages found from list of packages specified") 2165c51f124SMoriah Waterland #define DBG_PKGOPS_GPKGLIST_ESRCH gettext("search failed looking for packages from list of packages specified") 2175c51f124SMoriah Waterland #define DBG_PKGOPS_GPKGLIST_OK gettext("successfully generated package list from list of packages specified") 2185c51f124SMoriah Waterland #define DBG_PKGOPS_GPKGLIST_UNKNOWN gettext("unknown value <%d> returned from gpkglist") 2195c51f124SMoriah Waterland #define DBG_PKGOPS_IS_INHERITED gettext("path <%s> is inherited from <%s>") 2205c51f124SMoriah Waterland #define DBG_PKGOPS_IS_NOT_THISZONE gettext("package <%s> is NOT this zone only") 2215c51f124SMoriah Waterland #define DBG_PKGOPS_IS_THISZONE gettext("package <%s> is this zone only") 2225c51f124SMoriah Waterland #define DBG_PKGOPS_LOCHIGH_ARGS gettext("rootpath <%s> pkginst <%s>") 2235c51f124SMoriah Waterland #define DBG_PKGOPS_LOCHIGH_ENTRY gettext("pkgLocateHighestInst:") 2245c51f124SMoriah Waterland #define DBG_PKGOPS_LOCHIGH_INSTANCE gettext("instance <%d> = pkginst <%s> name <%s> arch <%s> version <%s> vendor <%s> basedir <%s> catg <%s> status <0x%02x>") 2255c51f124SMoriah Waterland #define DBG_PKGOPS_LOCHIGH_RETURN gettext("npkgs is <%d> returned pkginst <%s> path <%s>") 2265c51f124SMoriah Waterland #define DBG_PKGOPS_LOCHIGH_WILDCARD gettext("package <%s> wild card specification <%s>") 2275c51f124SMoriah Waterland #define DBG_PKGOPS_MATCHINHERIT_ARGS gettext("<%s> vs <%s> root <%s> mode <0%04o> modtime <0x%08lx> ftype <%c> cksum <0x%08lx>") 2285c51f124SMoriah Waterland #define DBG_PKGOPS_MATCHINHERIT_ENTRY gettext("match inherited:") 2295c51f124SMoriah Waterland #define DBG_PKGOPS_MOD_MISMATCH gettext("mod time <%s>:<0x%08lx> does not match <%s>:<0x%08lx>") 2305c51f124SMoriah Waterland #define DBG_PKGOPS_NOT_THISZONE gettext("package <%s> is NOT this zone only: no this zone only packages") 2315c51f124SMoriah Waterland #define DBG_PKGOPS_PARAMTRUTH_RESULTS gettext("lookup param <%s> compare-value <%s> default-value <%s> param-is <%s> result <%s>") 2325c51f124SMoriah Waterland #define DBG_PKGOPS_PKGINFO_RETURNED gettext("pkginfo for path <%s> returned <%d>") 2335c51f124SMoriah Waterland #define DBG_PKGOPS_PKG_IS_GZONLY gettext("package <%s> IS recorded as installed in the global zone only") 2345c51f124SMoriah Waterland #define DBG_PKGOPS_PKG_NOT_GZONLY gettext("package <%s> not recorded as installed in the global zone only") 2355c51f124SMoriah Waterland #define DBG_PKGOPS_REMOVED_GZPKG gettext("removed package <%s> from global zone only file") 2365c51f124SMoriah Waterland #define DBG_PKGOPS_VOLATILE_EXISTS gettext("volatile file <%s> exists") 2375c51f124SMoriah Waterland #define DBG_PKGREMOVE_ADMINFILE gettext("using admin file <%s>") 2385c51f124SMoriah Waterland #define DBG_PKGREMOVE_ARGS gettext("package <%s> dirname <%s> nodelete <%d> adminFile <%s>") 2395c51f124SMoriah Waterland #define DBG_PKGREMOVE_ENTRY gettext("pkgRemove:") 2405c51f124SMoriah Waterland #define DBG_PKGREMOVE_EXEPIC_GZ gettext("executing postremove package <%s> script <%s>.") 2415c51f124SMoriah Waterland #define DBG_PKGREMOVE_EXEPIC_LZ gettext("executing postremove package <%s> script <%s> zone <%s>.") 2425c51f124SMoriah Waterland #define DBG_PKGREMOVE_EXEPOC_GZ gettext("executing preremove package <%s> script <%s>.") 2435c51f124SMoriah Waterland #define DBG_PKGREMOVE_EXEPOC_LZ gettext("executing preremove package <%s> script <%s> zone <%s>.") 2445c51f124SMoriah Waterland #define DBG_PKGREMOVE_HOLLOW_DISABLED gettext("hollow package support is disabled") 2455c51f124SMoriah Waterland #define DBG_PKGREMOVE_HOLLOW_ENABLED gettext("hollow package support is enabled") 2465c51f124SMoriah Waterland #define DBG_PKGREMOVE_PIC_DBUPD gettext("skipping postremove package <%s> script <%s> zone <%s> (db update only)") 2475c51f124SMoriah Waterland #define DBG_PKGREMOVE_PIC_NODEL gettext("skipping postremove package <%s> script <%s> zone <%s> (nodelete)") 2485c51f124SMoriah Waterland #define DBG_PKGREMOVE_PIC_NONE gettext("package <%s> zone <%s> has no postremove script") 2495c51f124SMoriah Waterland #define DBG_PKGREMOVE_POC_DBUPD gettext("skipping preremove package <%s> script <%s> zone <%s> (db update only)") 2505c51f124SMoriah Waterland #define DBG_PKGREMOVE_POC_NODEL gettext("skipping preremove package <%s> script <%s> zone <%s> (nodelete)") 2515c51f124SMoriah Waterland #define DBG_PKGREMOVE_POC_NONE gettext("package <%s> zone <%s> has no preremove script") 2525c51f124SMoriah Waterland #define DBG_PKGREMOVE_PRERMCHK gettext("preremoval check of package <%s> zone <%s>") 2535c51f124SMoriah Waterland #define DBG_PKGREMOVE_PRERMCHK_OK gettext("preremoval check successful") 2545c51f124SMoriah Waterland #define DBG_PKGREMOVE_PROCPKG_GZ gettext("begin processing package <%s> information lockfile <%s>") 2555c51f124SMoriah Waterland #define DBG_PKGREMOVE_PROCPKG_LZ gettext("begin processing package <%s> information lockfile <%s> zone <%s>") 2565c51f124SMoriah Waterland #define DBG_PKGREMOVE_REM gettext("performing class removal package <%s> zone <%s>") 2575c51f124SMoriah Waterland #define DBG_PKGREMOVE_REM_DBUPD gettext("skipping class removal package <%s> zone <%s> (db update only)") 2585c51f124SMoriah Waterland #define DBG_PKGREMOVE_REM_NODEL gettext("skipping class removal package <%s> zone <%s> (nodelete)") 2595c51f124SMoriah Waterland #define DBG_PKGREMOVE_TMPDIR gettext("using temporary directory <%s>") 2605c51f124SMoriah Waterland #define DBG_PKGREMPKGSGZNNGZ_ARGS gettext("nodelete <%d> longest package <%d> repeat <%d> altbindir <%s>") 2615c51f124SMoriah Waterland #define DBG_PKGREMPKGSGZNNGZ_ENTRY gettext("remove_packages_in_global_no_zones:") 2625c51f124SMoriah Waterland #define DBG_PKGREMPKGSGZWNGZ_ARGS gettext("nodelete <%d> longest package <%d> repeat <%d> altbindir <%s> pkgdir <%s>") 2635c51f124SMoriah Waterland #define DBG_PKGREMPKGSGZWNGZ_ENTRY gettext("remove_packages_in_global_with_zones:") 2645c51f124SMoriah Waterland #define DBG_PKGREMPKGSNGZ_ARGS gettext("nodelete <%d> longest package <%d> repeat <%d> altbindir <%s> pkgdir <%s>") 2655c51f124SMoriah Waterland #define DBG_PKGREMPKGSNGZ_ENTRY gettext("remove_packages_in_nonglobal_zone:") 2665c51f124SMoriah Waterland #define DBG_PKGRM_ADMINFILE gettext("using admin file <%s>") 2675c51f124SMoriah Waterland #define DBG_PKGRM_CKRETURN gettext("check return code <%d> package <%s> function <remove packages>") 2685c51f124SMoriah Waterland #define DBG_PKGRM_ENABLING_HOLLOW gettext("enabling hollow package support") 2695c51f124SMoriah Waterland #define DBG_PKGRM_HOLLOW_ENABLED gettext("hollow package support is enabled") 2705c51f124SMoriah Waterland #define DBG_PKGRM_TMPDIR gettext("using temporary directory <%s>") 2715c51f124SMoriah Waterland #define DBG_PKGZONECHECKINSTALL_ARGS gettext("zone <%s> package <%s> dirname <%s> bdevice <%s> mount <%s> ir <%s> idsName <%s> adminFile <%s> stdout <%s>") 2725c51f124SMoriah Waterland #define DBG_PKGZONECHECKINSTALL_ENTRY gettext("pkgZoneCheckInstall:") 2735c51f124SMoriah Waterland #define DBG_PKGZONECHECKREMOVE_ARGS gettext("zone <%s> package <%s> dirname <%s> adminFile <%s> stdoutpath <%s>") 2745c51f124SMoriah Waterland #define DBG_PKGZONECHECKREMOVE_ENTRY gettext("pkgZoneCheckRemove:") 2755c51f124SMoriah Waterland #define DBG_PKGZONEINSTALL_ARGS gettext("zone <%s> package <%s> dirname <%s> bdevice <%s> mount <%s> ir <%s> idsName <%s> adminFile <%s>") 2765c51f124SMoriah Waterland #define DBG_PKGZONEINSTALL_ENTRY gettext("pkgZoneInstall:") 2775c51f124SMoriah Waterland #define DBG_PKGZONEREMOVE_ARGS gettext("zone <%s> package <%s> dirname <%s> nodelete <%d> adminFile <%s>") 2785c51f124SMoriah Waterland #define DBG_PKGZONEREMOVE_ENTRY gettext("pkgZoneRemove:") 2795c51f124SMoriah Waterland #define DBG_PKG_INSTALLED gettext("package <%s> is installed at <%s>") 2805c51f124SMoriah Waterland #define DBG_PKG_IN_DIR gettext("package <%s> available in directory <%s>") 2815c51f124SMoriah Waterland #define DBG_PKG_NOT_INSTALLED gettext("package <%s> is not installed at <%s>") 2825c51f124SMoriah Waterland #define DBG_PKG_SELECTED gettext("-> package [%d] = <%s>") 2835c51f124SMoriah Waterland #define DBG_PKG_TEST_EXISTENCE gettext("test existence of package <%s> at <%s>") 2845c51f124SMoriah Waterland #define DBG_PREIVFY_CKCFCONTENT gettext("check content conflict: package <%s> message <%s>") 2855c51f124SMoriah Waterland #define DBG_PREIVFY_CKCONFLICT gettext("check conflicting installed object: package <%s> message <%s>") 2865c51f124SMoriah Waterland #define DBG_PREIVFY_CKDEPEND gettext("check dependency: package <%s> message <%s>") 2875c51f124SMoriah Waterland #define DBG_PREIVFY_CKDIRS gettext("check directories: package <%s> message <%s>") 2885c51f124SMoriah Waterland #define DBG_PREIVFY_CKINSTANCE gettext("check instance: package <%s> message <%s>") 2895c51f124SMoriah Waterland #define DBG_PREIVFY_CKPARTIALINSTALL gettext("check partially installed: package <%s> message <%s>") 2905c51f124SMoriah Waterland #define DBG_PREIVFY_CKPARTIALREMOVE gettext("check partially removed: package <%s> message <%s>") 2915c51f124SMoriah Waterland #define DBG_PREIVFY_CKPKGDIRS gettext("check package directories: package <%s> message <%s>") 2925c51f124SMoriah Waterland #define DBG_PREIVFY_CKPKGFILEBAD gettext("check file bad: package <%s> message <%s>") 2935c51f124SMoriah Waterland #define DBG_PREIVFY_CKPKGFILES gettext("check package files: package <%s> message <%s>") 2945c51f124SMoriah Waterland #define DBG_PREIVFY_CKPRENCI gettext("check prerequisite incomplete: package <%s> message <%s>") 2955c51f124SMoriah Waterland #define DBG_PREIVFY_CKPREREQ gettext("check prerequisite installed: package <%s> message <%s>") 2965c51f124SMoriah Waterland #define DBG_PREIVFY_CKPRIV gettext("check privileges: package <%s> message <%s>") 2975c51f124SMoriah Waterland #define DBG_PREIVFY_CKRUNLEVEL gettext("check run level: package <%s> message <%s>") 2985c51f124SMoriah Waterland #define DBG_PREIVFY_CKSETUID gettext("check setuid: package <%s> message <%s>") 2995c51f124SMoriah Waterland #define DBG_PREIVFY_CKSPACE gettext("check space: package <%s> message <%s>") 3005c51f124SMoriah Waterland #define DBG_PREIVFY_ENTRY gettext("performing preinstallation dependency verification") 3015c51f124SMoriah Waterland #define DBG_PREIVFY_GETYORN_ARGS gettext("package <%s> nocheck <%d> quit <%d> message <%s> admin-msg <%s>") 3025c51f124SMoriah Waterland #define DBG_PREIVFY_GETYORN_CKYORN gettext("package <%s> ckyorn return non-zero <%d>") 3035c51f124SMoriah Waterland #define DBG_PREIVFY_GETYORN_NOCHECK gettext("package <%s> no check - return <0> (success)") 3045c51f124SMoriah Waterland #define DBG_PREIVFY_GETYORN_NOT_Y gettext("package <%s> ckyorn answer <%s> - return <3> (interruption)") 3055c51f124SMoriah Waterland #define DBG_PREIVFY_GETYORN_QUIT gettext("package <%s> quit - return <4> (administration)") 3065c51f124SMoriah Waterland #define DBG_PREIVFY_GETYORN_QUIT_USER gettext("package <%s> noninteractive mode - return <5> (administration required)") 3075c51f124SMoriah Waterland #define DBG_PREIVFY_GETYORN_SUCCESS gettext("package <%s> continue installation") 3085c51f124SMoriah Waterland #define DBG_PREIVFY_NOFILE gettext("unable to perform preinstallation check of package <%s> in zone <%s> data file <%s>: %s") 3095c51f124SMoriah Waterland #define DBG_PREIVFY_SCAN gettext("scanning for line <%s> found package <%s> zone <%s>") 3105c51f124SMoriah Waterland #define DBG_PREIVFY_SKIP_THISZONE gettext("skipping preinstall verification of package <%s>: marked this zone only") 3115c51f124SMoriah Waterland #define DBG_PRERVFY_ENTRY gettext("performing preremoval dependency verification") 3125c51f124SMoriah Waterland #define DBG_PRERVFY_GETYORN_ARGS gettext("package <%s> nocheck <%d> quit <%d> message <%s> admin-msg <%s>") 3135c51f124SMoriah Waterland #define DBG_PRERVFY_GETYORN_CKYORN gettext("package <%s> ckyorn return non-zero <%d>") 3145c51f124SMoriah Waterland #define DBG_PRERVFY_GETYORN_NOCHECK gettext("package <%s> no check - return <0> (success)") 3155c51f124SMoriah Waterland #define DBG_PRERVFY_GETYORN_NOT_Y gettext("package <%s> ckyorn answer <%s> - return <3> (interruption)") 3165c51f124SMoriah Waterland #define DBG_PRERVFY_GETYORN_QUIT gettext("package <%s> quit - return <4> (administration)") 3175c51f124SMoriah Waterland #define DBG_PRERVFY_GETYORN_QUIT_USER gettext("package <%s> noninteractive mode - return <5> (administration required)") 3185c51f124SMoriah Waterland #define DBG_PRERVFY_GETYORN_SUCCESS gettext("package <%s> continue removal") 3195c51f124SMoriah Waterland #define DBG_PRERVFY_NOFILE gettext("unable to perform preremoval check of package <%s> in zone <%s> data file <%s>: %s") 3205c51f124SMoriah Waterland #define DBG_PRERVFY_RCKDEPEND gettext("check dependency: package <%s> message <%s>") 3215c51f124SMoriah Waterland #define DBG_PRERVFY_RCKDEPSONME gettext("check depends on this package: package <%s> message <%s>") 3225c51f124SMoriah Waterland #define DBG_PRERVFY_RCKPRENCI gettext("check prerequisite incomplete: package <%s> message <%s>") 3235c51f124SMoriah Waterland #define DBG_PRERVFY_RCKPREREQ gettext("check prerequisite installed: package <%s> message <%s>") 3245c51f124SMoriah Waterland #define DBG_PRERVFY_RCKPRIV gettext("check privileges: package <%s> message <%s>") 3255c51f124SMoriah Waterland #define DBG_PRERVFY_RCKRUNLEVEL gettext("check run level: package <%s> message <%s>") 3265c51f124SMoriah Waterland #define DBG_PRERVFY_SCAN gettext("scanning for line <%s> found package <%s> zone <%s>") 3275c51f124SMoriah Waterland #define DBG_PUTPARAM_PUTCONDINFO_ENTRY gettext("generating environment condition information") 3285c51f124SMoriah Waterland #define DBG_PUTPARAM_PUTCONDINFO_EXIT gettext("environment condition information is <%s>") 3295c51f124SMoriah Waterland #define DBG_QUIT_REMOVING_PKGDIR gettext("install not yet started and not updating existing: removing package directory <%s>") 3305c51f124SMoriah Waterland #define DBG_QUIT_REMOVING_PKGSAV gettext("install started and updating existing: removing package temp directory <%s>") 3315c51f124SMoriah Waterland #define DBG_REMOVEPKGS_ARGS gettext("npkgs <%d> nodelete <%d> longest pkg <%d> repeat <%d> pkgdir <%s> spooldir <%s>") 3325c51f124SMoriah Waterland #define DBG_REMOVEPKGS_ENTRY gettext("remove_packages:") 3335c51f124SMoriah Waterland #define DBG_REMOVE_FLAG_VALUES gettext("%s: admnflag <%d> doreboot <%d> failflag <%d> interrupted <%d> intrflag <%d> ireboot <%d> nullflag <%d> warnflag <%d>") 3345c51f124SMoriah Waterland #define DBG_REMOVE_PKGS_FROM_SPOOL gettext("removing packages from spool directory <%s>") 3355c51f124SMoriah Waterland #define DBG_REMOVE_PKG_FROM_ZONE gettext("removing package <%s> from zone <%s>") 3365c51f124SMoriah Waterland #define DBG_REMOVING_DSTREAM_PKGDIR gettext("removing temporary stream <%s> for package <%s>") 3375c51f124SMoriah Waterland #define DBG_REMOVING_DSTREAM_TMPDIR gettext("removing package datastream temporary directory <%s>") 3385c51f124SMoriah Waterland #define DBG_REMOVING_DWNLD_TMPDIR gettext("removing download temporary directory <%s>") 3395c51f124SMoriah Waterland #define DBG_REMOVING_PKG_TMPDIR gettext("removing temporary directory <%s> for package <%s>") 3405c51f124SMoriah Waterland #define DBG_REMOVING_ZONE_TMPDIR gettext("removing zones temporary directory <%s>") 3415c51f124SMoriah Waterland #define DBG_RESTORE_ZONE_STATE gettext("restoring state of zone <%s>") 3425c51f124SMoriah Waterland #define DBG_SETUP_TEMPDIR gettext("created temporary directory <%s>") 3435c51f124SMoriah Waterland #define DBG_SKIPPING_ZONE gettext("skipping processing of zone <%s>: zone not running") 3445c51f124SMoriah Waterland #define DBG_SKIPPING_ZONE_BOOT gettext("not booting zone <%s>: zone is running") 3455c51f124SMoriah Waterland #define DBG_SKIPPING_ZONE_NOT_RUNNABLE gettext("not booting zone <%s>: zone cannot be booted") 3465c51f124SMoriah Waterland #define DBG_SML_ADD_TAG gettext("add element <%s> to tag <%s>") 3475c51f124SMoriah Waterland #define DBG_SML_CREATED_NEW_TAG_OBJECT gettext("new tag <0x%08lx> name=<%s> created") 3485c51f124SMoriah Waterland #define DBG_SML_CREATE_NEW_TAG_OBJECT gettext("create new tag name=<%s>") 3495c51f124SMoriah Waterland #define DBG_SML_DELETE_PARAM gettext("delete parameter tag <%s> name <%s>: ") 3505c51f124SMoriah Waterland #define DBG_SML_DELETE_PARAM_FOUND gettext("parameter <%s> value=<%s> - deleted") 3515c51f124SMoriah Waterland #define DBG_SML_DELETE_PARAM_NOT_FOUND gettext("parameter <%s> not found - not deleted") 3525c51f124SMoriah Waterland #define DBG_SML_DELETE_PARAM_NO_PARAMS gettext("tag contains no parameters - not deleted") 3535c51f124SMoriah Waterland #define DBG_SML_DEL_TAG gettext("delete element <%s> from tag <%s>") 3545c51f124SMoriah Waterland #define DBG_SML_FREE_TAG gettext("freeing tag <0x%08lx> name=<%s>") 3555c51f124SMoriah Waterland #define DBG_SML_GET_PARAM gettext("get parameter <%s> tag <%s>") 3565c51f124SMoriah Waterland #define DBG_SML_GET_PARAM_BY_TAG gettext("get param by tag name <%s> index <%d> param <%s>") 3575c51f124SMoriah Waterland #define DBG_SML_GET_PARAM_NAME gettext("tag <%s> get parameter number <%d>") 3585c51f124SMoriah Waterland #define DBG_SML_GET_TAG_BY_NAME gettext("get tag by name <%s> index <%d>") 3595c51f124SMoriah Waterland #define DBG_SML_GOT_PARAM gettext("tag <%s> %s = <%s>") 3605c51f124SMoriah Waterland #define DBG_SML_GOT_PARAM_NAME gettext("tag <%s> got parameter number <%d> name=<%s>") 3615c51f124SMoriah Waterland #define DBG_SML_HAVE_PARM_NAME gettext("read tag: parameter name <%s> tag <%s>") 3625c51f124SMoriah Waterland #define DBG_SML_HAVE_PARM_VALUE gettext("read tag: parameter %s=\"%s\" tag <%s>") 3635c51f124SMoriah Waterland #define DBG_SML_HAVE_TAG_NAME gettext("read tag: open tag <%s>parent <%s>") 3645c51f124SMoriah Waterland #define DBG_SML_INT_FREE_PARAMS gettext("freeing parameters at <0x%08lx>") 3655c51f124SMoriah Waterland #define DBG_SML_INT_FREE_PARAM_NAME gettext("free param name <0x%08lx> name=<0x%08lx> value=<%s>") 3665c51f124SMoriah Waterland #define DBG_SML_INT_FREE_PARAM_VALUE gettext("free param value <0x%08lx> name=<0x%08lx> value=<%s>") 3675c51f124SMoriah Waterland #define DBG_SML_INT_FREE_TAG gettext("free tag <0x%08lx> name=<%s> param <%d> tags <%d>") 3685c51f124SMoriah Waterland #define DBG_SML_INT_FREE_TAGS gettext("freeing tags at <0x%08lx>") 3695c51f124SMoriah Waterland #define DBG_SML_INT_FREE_TAG_NAME gettext("freeing tag name <0x%08lx> name=<%s>") 3705c51f124SMoriah Waterland #define DBG_SML_LOADED_TAGS_FROM_STR gettext("tag <0x%08lx> <%s> loaded from string") 3715c51f124SMoriah Waterland #define DBG_SML_ONE_TAG_READ gettext("one tag read - tag <0x%08lx> name=<%s>") 3725c51f124SMoriah Waterland #define DBG_SML_PRINTTAG gettext("dump of tag <%s> size <%d> bytes\n\n****************************************************************************\n%s****************************************************************************\n") 3735c51f124SMoriah Waterland #define DBG_SML_READTAG_BLANKLINE gettext("read tag: blank line (no tag returned) at <%s>") 3745c51f124SMoriah Waterland #define DBG_SML_READTAG_CLOSED_TAG gettext("read tag: closed tag <%s> inside tag <%s>") 3755c51f124SMoriah Waterland #define DBG_SML_READTAG_CLOSE_TAG gettext("read tag: close tag <%s> found") 3765c51f124SMoriah Waterland #define DBG_SML_READTAG_EXPECTED_EOF gettext("read tag: provider <%s> EOF outside of tag input") 3775c51f124SMoriah Waterland #define DBG_SML_READTAG_UNEXPECTED_EOF gettext("read tag: provider <%s> unexpected EOF in middle of tag input") 3785c51f124SMoriah Waterland #define DBG_SML_READ_IN_TOP_TAG gettext(" --> read in top tag <%s>") 3795c51f124SMoriah Waterland #define DBG_SML_READ_ONE_TAG gettext("read one tag from <%s>") 3805c51f124SMoriah Waterland #define DBG_SML_READ_ONE_TAG_NOTAG gettext("cannot read tag - no tag present") 3815c51f124SMoriah Waterland #define DBG_SML_READ_TAG gettext("read tag: loading subtag for <%s>") 3825c51f124SMoriah Waterland #define DBG_SML_SET_PARAM gettext("set parameter tag <%s> %s = <%s>: ") 3835c51f124SMoriah Waterland #define DBG_SML_SET_PARAM_CREATE_NEW gettext("create new parameter") 3845c51f124SMoriah Waterland #define DBG_SML_SET_PARAM_LEAVE_ALONE gettext("existing value=<%s> identical - not changed") 3855c51f124SMoriah Waterland #define DBG_SML_SET_PARAM_MODIFY gettext("modify existing value=<%s>") 3865c51f124SMoriah Waterland #define DBG_SML_START_CLOSE_TAG gettext("read tag: close tag found current tag=<%s>") 3875c51f124SMoriah Waterland #define DBG_SML_TAG_HEAD_DONE gettext("read tag: tag <%s> started inside tag <%s>") 3885c51f124SMoriah Waterland #define DBG_SML_TAG_ONLY gettext("read tag: line with tag name only tag <%s>") 3895c51f124SMoriah Waterland #define DBG_UNMOUNTING_DEV gettext("unmounting package device <%s>") 3905c51f124SMoriah Waterland #define DBG_UNPACKCHECK_ARGS gettext("idsname <%s> packagedir <%s>") 3915c51f124SMoriah Waterland #define DBG_UNPACKCHECK_ENTRY gettext("unpack_and_check_packages:") 3925c51f124SMoriah Waterland #define DBG_UNPACKSTRM_ARGS gettext("unpack package <%s> from stream <%s> into directory <%s>") 3935c51f124SMoriah Waterland #define DBG_UNPACKSTRM_ENTRY gettext("unpack_package_from_stream:") 3945c51f124SMoriah Waterland #define DBG_UNPACKSTRM_UNPACKING gettext("unpacking package <%s> from stream <%s> into temporary directory <%s>") 3955c51f124SMoriah Waterland #define DBG_VERIFY_SKIP_THISZONE gettext("skipping dependency checking of package <%s>: marked this zone only") 3965c51f124SMoriah Waterland #define DBG_WRITEFILE_ENTRY gettext("write file: control <0x%02x> mode <0%04lo> file <%s>") 3975c51f124SMoriah Waterland #define DBG_ZONES_SKIPPED gettext("skipped <%d> zones that are not currently booted") 3985c51f124SMoriah Waterland #define DBG_ZONE_EXEC_ENTER gettext("zone_exec: enter zone <%s> command <%s> args:") 3995c51f124SMoriah Waterland #define DBG_ZONE_EXEC_EXIT gettext("zone_exec: exit zone <%s> command <%s> exit code <%d> stdout <%s>") 4005c51f124SMoriah Waterland 4015c51f124SMoriah Waterland /* 4025c51f124SMoriah Waterland * I18N: these messages are error messages that can be displayed 4035c51f124SMoriah Waterland * during the normal usage of the products 4045c51f124SMoriah Waterland */ 4055c51f124SMoriah Waterland 4065c51f124SMoriah Waterland #define ERR_ACCRESP gettext("unable to access response file <%s>") 4075c51f124SMoriah Waterland #define ERR_ADMBD gettext("%s is already installed at %s. Admin file will force a duplicate installation at %s.") 4085c51f124SMoriah Waterland #define ERR_ADM_KEYSTORE gettext("unable to determine keystore location") 4095c51f124SMoriah Waterland #define ERR_ADM_PROXY gettext("Admin file proxy setting invalid") 4105c51f124SMoriah Waterland #define ERR_ALLZONES_AND_G_USED gettext("The -G option (install packages in the global zone only)\nmay not be used with package <%s> because the package must be\ninstalled in all zones.") 4115c51f124SMoriah Waterland #define ERR_ALLZONES_AND_IN_LZ gettext("The package <%s> may only be installed by the global zone administrator") 4125c51f124SMoriah Waterland #define ERR_ALLZONES_AND_IN_LZ_PKGRM gettext("The package <%s> may only be removed by the global zone administrator") 4135c51f124SMoriah Waterland #define ERR_ALLZONES_AND_THISZONE gettext("The package <%s> has <%s> = true and <%s> = true: the package may set either parameter to true, but may not set both parameters to true. NOTE: if the package contains a request script, it is treated as though it has <SUNW_PKG_THISZONE> = true") 4145c51f124SMoriah Waterland #define ERR_ALLZONES_AND_Z_USED gettext("The -Z option (extend packages installed in the global zone to all non-global zones) may not be used with the package <%s> which may only be installed in all zones by the global zone administrator") 4155c51f124SMoriah Waterland #define ERR_ARG gettext("URL <%s> is not valid") 4165c51f124SMoriah Waterland #define ERR_BADULIMIT gettext("cannot process invalid ULIMIT value of <%s>.") 4175c51f124SMoriah Waterland #define ERR_BADUSER gettext("unable to find user <%s> or <%s>.") 4185c51f124SMoriah Waterland #define ERR_BAD_DEVICE gettext("bad device <%s> specified") 4195c51f124SMoriah Waterland #define ERR_BAD_N_PKGRM gettext("you must specify a category (-Y) or list of packages to remove") 4205c51f124SMoriah Waterland #define ERR_BRAND_GETBRAND gettext("unable to get zone brand: zonecfg_get_brand: %s") 4215c51f124SMoriah Waterland #define ERR_CANNOT_BOOT_ZONE gettext("no changes made to zone <%s>: unable to boot zone") 4225c51f124SMoriah Waterland #define ERR_CANNOT_CKSUM_FILE gettext("unable to determine checksum of file <%s>: %s") 4235c51f124SMoriah Waterland #define ERR_CANNOT_CONVERT_PKGSTRM gettext("unable to convert package <%s> to stream from <%s> to <%s>") 4245c51f124SMoriah Waterland #define ERR_CANNOT_COPY gettext("unable to copy <%s>\n\tto <%s>") 4255c51f124SMoriah Waterland #define ERR_CANNOT_COPY_LOCAL gettext("cannot obtain local copy of <%s>: (%d) %s") 4265c51f124SMoriah Waterland #define ERR_CANNOT_CREATE_PKGPATH gettext("unable to create package path <%s>") 4275c51f124SMoriah Waterland #define ERR_CANNOT_GET_ZONE_LIST gettext("unable to determine list of non-global zones installed on this system") 4285c51f124SMoriah Waterland #define ERR_CANNOT_LOCK_THIS_ZONE gettext("Unable to lock this zone for administration") 4295c51f124SMoriah Waterland #define ERR_CANNOT_LOCK_ZONES gettext("unable to lock zones to perform operations") 4305c51f124SMoriah Waterland #define ERR_CANNOT_OPEN_DEPEND_FILE gettext("unable to open depend file <%s>: %s") 4315c51f124SMoriah Waterland #define ERR_CANNOT_OPEN_FOR_WRITING gettext("unable to open <%s> for writing: %s") 4325c51f124SMoriah Waterland #define ERR_CANNOT_OPEN_PKG_STREAM gettext("unable to open package datastream <%s>") 4335c51f124SMoriah Waterland #define ERR_CANNOT_UNPACK_PKGSTRM gettext("unable to unpack package <%s> from stream <%s> into directory <%s>") 4345c51f124SMoriah Waterland #define ERR_CANNOT_USE_DIR gettext("cannot use directory <%s>: %s") 4355c51f124SMoriah Waterland #define ERR_CASFAIL gettext("class action script did not complete successfully") 4365c51f124SMoriah Waterland #define ERR_CAT_FND gettext("Category argument <%s> cannot be found.") 4375c51f124SMoriah Waterland #define ERR_CAT_INV gettext("Category argument <%s> is invalid.") 4385c51f124SMoriah Waterland #define ERR_CAT_LNGTH gettext("The category argument exceeds the SVR4 ABI defined maximum supported length of 16 characters.") 4395c51f124SMoriah Waterland #define ERR_CAT_SYS gettext("Unable to remove packages that are part of the SYSTEM category with the -Y option.") 4405c51f124SMoriah Waterland #define ERR_CFBAD gettext("bad entry read of contents file") 4415c51f124SMoriah Waterland #define ERR_CFMISSING gettext("missing entry in contents file for <%s>") 4425c51f124SMoriah Waterland #define ERR_CHDIR gettext("unable to change current working directory to <%s>") 4435c51f124SMoriah Waterland #define ERR_CHGDIR gettext("unable to change directory to <%s>") 4445c51f124SMoriah Waterland #define ERR_CHKINSTALL gettext("checkinstall script did not complete successfully") 4455c51f124SMoriah Waterland #define ERR_CHKINSTALL_NOSCRIPT gettext("unable to access checkinstall script <%s>") 4465c51f124SMoriah Waterland #define ERR_CHMOD gettext("unable to change the mode of the response file <%s>") 4475c51f124SMoriah Waterland #define ERR_CHMOD_CHK gettext("unable to change the mode of the checkinstall script") 4485c51f124SMoriah Waterland #define ERR_CLASSES gettext("CLASSES parameter undefined in <%s>") 4495c51f124SMoriah Waterland #define ERR_CLIDX gettext("invalid class index of <%d> detected for file %s.") 4505c51f124SMoriah Waterland #define ERR_COPY_MEMORY gettext("unable to allocate memory to copy file <%s>: (%d) %s") 4515c51f124SMoriah Waterland #define ERR_CORRUPT gettext("source path <%s> is corrupt") 4525c51f124SMoriah Waterland #define ERR_COULD_NOT_INSTALL gettext("%s could not be installed.") 4535c51f124SMoriah Waterland #define ERR_CREATE_PATH_2 gettext("unable to create path from <%s> and <%s>") 4545c51f124SMoriah Waterland #define ERR_CREATE_PATH_3 gettext("unable to create path from <%s> and <%s> and <%s>") 4555c51f124SMoriah Waterland #define ERR_CREATE_PKGOBJ gettext("unable to create package object <%s>.") 4565c51f124SMoriah Waterland #define ERR_CREATE_TMPADMIN gettext("unable to create temporary admin file <%s>: %s") 4575c51f124SMoriah Waterland #define ERR_CREAT_CONT gettext("unable to create contents file <%s>") 4585c51f124SMoriah Waterland #define ERR_CRERESP gettext("unable to create response file <%s>") 4595c51f124SMoriah Waterland #define ERR_DB gettext("unable to query or modify database") 4605c51f124SMoriah Waterland #define ERR_DB_QUERY gettext("unable to find <%s> in the database.") 4615c51f124SMoriah Waterland #define ERR_DB_TBL gettext("unable to remove database entries for package <%s> in table <%s>.") 4625c51f124SMoriah Waterland #define ERR_DEPENDENCY_IGNORED gettext("\nERROR: %s <%s> on %s <%s>\n") 4635c51f124SMoriah Waterland #define ERR_DEPENDENCY_REPORT gettext("\nERROR: <%s> %s <%s> on %s <%s>\n") 4645c51f124SMoriah Waterland #define ERR_DEPNAM gettext("The <%s> package \"%s\" depends on the package currently being removed.") 4655c51f124SMoriah Waterland #define ERR_DEPONME gettext("The <%s> package depends on the package currently being removed.") 4665c51f124SMoriah Waterland #define ERR_DIR_CONST gettext("unable to construct download directory <%s>") 4675c51f124SMoriah Waterland #define ERR_DSARCH gettext("unable to find archive for <%s> in datastream") 4685c51f124SMoriah Waterland #define ERR_DSINIT gettext("could not process datastream from <%s>") 4695c51f124SMoriah Waterland #define ERR_DSTREAM gettext("unable to unpack datastream") 4705c51f124SMoriah Waterland #define ERR_DSTREAMCNT gettext("datastream early termination problem") 4715c51f124SMoriah Waterland #define ERR_DWNLDTEMPDIR gettext("unable to make temporary directory for download operations in directory <%s>: %s") 4725c51f124SMoriah Waterland #define ERR_FCHMOD gettext("unable to change mode of file <%s> to <0x%04lx>: (%d) %s") 4735c51f124SMoriah Waterland #define ERR_FINALCK_ATTR gettext("ERROR: attribute verification of <%s> failed") 4745c51f124SMoriah Waterland #define ERR_FINALCK_CONT gettext("ERROR: content verification of <%s> failed") 4755c51f124SMoriah Waterland #define ERR_FSYS_FELLOUT gettext("fsys(): fell out of loop looking for <%s>") 4765c51f124SMoriah Waterland #define ERR_F_REQUIRES_M gettext("the -f option must be used in conjunction with the -m option") 4775c51f124SMoriah Waterland #define ERR_FSTAT gettext("unable to fstat fd <%d> pathname <%s>: (%d) %s") 4785c51f124SMoriah Waterland #define ERR_GPKGLIST_ERROR gettext("unable to determine list of packages to operate on (internal error in gpkglist)") 4795c51f124SMoriah Waterland #define ERR_GZ_USED_TOGETHER gettext("the -G and zonelist options cannot be used together") 4805c51f124SMoriah Waterland #define ERR_ILL_HTTP_OPTS gettext("The -i and (-k or -P) options are mutually exclusive.") 4815c51f124SMoriah Waterland #define ERR_ILL_PASSWD gettext("A password is required to retrieve the public certificate from the keystore.") 4825c51f124SMoriah Waterland #define ERR_INCOMP_VERS gettext("A version of <%s> package \"%s\" (which is incompatible with the package that is being installed) is currently installed and must be removed.") 4835c51f124SMoriah Waterland #define ERR_INPUT gettext("error while reading file <%s>: (%d) %s") 4845c51f124SMoriah Waterland #define ERR_INSTALL_ZONES_SKIPPED gettext("unable to boot <%d> zones that are not currently running - no packages installed on those zones") 4855c51f124SMoriah Waterland #define ERR_INTONLY gettext("unable to install <%s> without user interaction") 4865c51f124SMoriah Waterland #define ERR_INTR gettext("Interactive request script supplied by package") 4875c51f124SMoriah Waterland #define ERR_INVALID_O_OPTION gettext("option <%s> passed to -O is not recognized: option ignored") 4885c51f124SMoriah Waterland #define ERR_IN_GZ_AND_ALLZONES_AND_INSTALLED gettext("The package <%s> is currently installed on\nthe system in the global zone only. When this package was last installed\nthe -G option was used (install package in the global zone only). The new\ninstance of this package to be installed may only be installed in all zones.\nBefore you can install the latest version of this package, you must first\nremove all instances of this package from the global zone (via pkgrm).") 4895c51f124SMoriah Waterland #define ERR_IN_GZ_AND_NOT_INSTALLED gettext("WARNING: The package <%s> is marked as being installed in the\nglobal zone only. The package is NOT installed on the system. This condition\nis not possible. The file <%s> must be edited\nand the line for this package removed.") 4905c51f124SMoriah Waterland 4915c51f124SMoriah Waterland #ifdef Z_OPTION_IS_SUPPORTED 4925c51f124SMoriah Waterland #define ERR_IN_GZ_AND_NO_G_USED gettext("The package <%s> is currently installed on the\nsystem in the global zone. To install the new instance of this package in the\nglobal zone only, you must specify the -G option. To install the new instance\nof this package in all zones you must first run pkgadd on the current package\nwith the -Z option so that the existing instance of this package is installed\nin all zones first. You may optionally remove the existing instance of this\npackage from the global zone first (via pkgrm) and then install the new\ninstance of this package in all zones.") 4935c51f124SMoriah Waterland #else 4945c51f124SMoriah Waterland #define ERR_IN_GZ_AND_NO_G_USED gettext("The package <%s> is currently installed on the system in the\nglobal zone. To install the new instance of this package in the global\nzone only, you must specify the -G option. To install the new instance\nof this package in all zones you must first remove the existing instance\nof this package from the global zone first (via pkgrm) and then install\nthe new instance of this package in all zones.") 4955c51f124SMoriah Waterland #endif 4965c51f124SMoriah Waterland 4975c51f124SMoriah Waterland #define ERR_LINK gettext("unable to link <%s> to <%s>: %s") 4985c51f124SMoriah Waterland #define ERR_LIVE_CONTINUE_NOT_SUPPORTED gettext("live continue mode is not supported") 4995c51f124SMoriah Waterland #define ERR_LOCKFILE gettext("unable to create lockfile <%s>") 5005c51f124SMoriah Waterland #define ERR_LOG gettext("unable to open logfile <%s>: (%d) %s") 5015c51f124SMoriah Waterland #define ERR_LOG_FAIL gettext("failed to log message using format <%s>") 5025c51f124SMoriah Waterland #define ERR_MALLOC gettext("unable to allocate %s memory, errno %d: %s") 5035c51f124SMoriah Waterland #define ERR_MAPFAILED gettext("unable to mmap <%s> for reading: (%d) %s") 5045c51f124SMoriah Waterland #define ERR_MEM gettext("unable to allocate memory.") 5055c51f124SMoriah Waterland #define ERR_MEMORY gettext("memory allocation failure, errno=%d") 5065c51f124SMoriah Waterland #define ERR_MERGINFOS_CHANGE_ZONEATTR gettext("attempt to change package <%s> version <%s> package zone attribute <%s> from <%s> to <%s>: the package zone attribute values of installed packages cannot be changed") 5075c51f124SMoriah Waterland #define ERR_MERGINFOS_UNSET_ZONEATTR gettext("attempt to unset package <%s> version <%s> package zone attribute <%s> from <%s>: the package zone attribute values of installed packages that are set to <true> cannot be unset") 5085c51f124SMoriah Waterland #define ERR_MERGINFOS_SET_ZONEATTR gettext("attempt to set package <%s> version <%s> package zone attribute <%s> that is not currently set to <%s>: the package zone attribute values of installed packages cannot be set to any value except <false>") 5095c51f124SMoriah Waterland #define ERR_MISSING_DIR_AND_PKG gettext("missing directory containing package to install and package instance (name of package ) to install from end of command line") 5105c51f124SMoriah Waterland #define ERR_MISSING_PKG_INSTANCE gettext("missing package instance (name of package) to install from end of command line") 5115c51f124SMoriah Waterland #define ERR_MKDIR gettext("unable to make temporary directory <%s>") 5125c51f124SMoriah Waterland #define ERR_MAKE_DIR gettext("unable to create directory <%s>: (%d) %s") 5135c51f124SMoriah Waterland #define ERR_MKTEMP gettext("unable to create unique temporary file <%s>: (%d) %s") 5145c51f124SMoriah Waterland #define ERR_MNT_NOMOUNTS gettext("get_mntinfo() could find no filesystems") 5155c51f124SMoriah Waterland #define ERR_MNT_NOROOT gettext("get_mntinfo() identified <%s> as root file system instead of <%s> errno %d: %s") 5165c51f124SMoriah Waterland #define ERR_MODTIM gettext("unable to reset access/modification time of <%s>: (%d) %s") 5175c51f124SMoriah Waterland #define ERR_NEWBD gettext("%s is already installed at %s. Duplicate installation attempted at %s.") 5185c51f124SMoriah Waterland #define ERR_NODIR gettext("unable to create directory <%s>: (%d) %s") 5195c51f124SMoriah Waterland #define ERR_NORESPCOPY gettext("unable to copy response file <%s> to <%s>") 5205c51f124SMoriah Waterland #define ERR_NODEVICE gettext("unable to determine device to install from") 5215c51f124SMoriah Waterland #define ERR_NOINT gettext("-n option cannot be used when removing pre-SVR4 packages") 5225c51f124SMoriah Waterland #define ERR_NOPKGS gettext("no packages were found in <%s>") 5235c51f124SMoriah Waterland #define ERR_NOREQUEST gettext("package does not contain an interactive request script") 5245c51f124SMoriah Waterland #define ERR_NORESP gettext("response file <%s> must not exist") 5255c51f124SMoriah Waterland #define ERR_NOTABLE gettext("unable to open %s table <%s>: %s") 5265c51f124SMoriah Waterland #define ERR_NOT_IN_GZ_AND_Z_USED gettext("The package <%s> is not currently installed\nin the global zone only; you may not specify the -Z option to install the\npackage in all non-global zones until the package is first install in the\nglobal zone only. You may optionally install the package without the -Z option\nto install the package in all zones.") 5275c51f124SMoriah Waterland #define ERR_NOT_ROOT gettext("You must be \"root\" for %s to execute properly.") 5285c51f124SMoriah Waterland #define ERR_NOW_ALLZONES_AND_HOLLOW gettext("The package <%s> has <%s> = false and <%s> = true: a hollow package must also be set to install in all zones") 5295c51f124SMoriah Waterland #define ERR_NO_LIVE_MODE gettext("live continue mode is not supported") 5305c51f124SMoriah Waterland #define ERR_NO_PKGDIR gettext("unable to use package directory <%s> for package <%s>: %s") 5315c51f124SMoriah Waterland #define ERR_NO_PKG_INFOFILE gettext("unable to open package <%s> pkginfo file <%s>: %s") 5325c51f124SMoriah Waterland #define ERR_NO_PKG_MAPFILE gettext("unable to open package <%s> pkgmap file <%s>: %s") 5335c51f124SMoriah Waterland #define ERR_NO_SUCH_INSTANCE gettext("instance <%s> does not exist") 5345c51f124SMoriah Waterland #define ERR_OPEN_ADMIN_FILE gettext("unable to open admin file <%s>: %s") 5355c51f124SMoriah Waterland #define ERR_OPEN_READ gettext("unable to open <%s> for reading: (%d) %s") 5365c51f124SMoriah Waterland #define ERR_OPEN_WRITE gettext("unable to open <%s> for writing: (%d) %s") 5375c51f124SMoriah Waterland #define ERR_OPRESVR4 gettext("unable to unlink options file <%s>") 5385c51f124SMoriah Waterland #define ERR_OUTPUT_WRITING gettext("error while writing file <%s>: (%d) %s") 5395c51f124SMoriah Waterland #define ERR_PACKAGEBINREN gettext("unable to rename <%s>\n\tto <%s>") 5405c51f124SMoriah Waterland #define ERR_PATH gettext("the path <%s> is invalid!") 5415c51f124SMoriah Waterland #define ERR_PKGABRV gettext("illegal package abbreviation <%s> in dependency file") 5425c51f124SMoriah Waterland #define ERR_PKGADDCHK_CNFFAILED gettext("Conflicting file dependency checking failed.") 5435c51f124SMoriah Waterland #define ERR_PKGADDCHK_DEPFAILED gettext("Dependency checking failed.") 5445c51f124SMoriah Waterland #define ERR_PKGADDCHK_MKPKGDIR gettext("Unable to make required packaging directory") 5455c51f124SMoriah Waterland #define ERR_PKGADDCHK_PRIVFAILED gettext("Privilege checking failed.") 5465c51f124SMoriah Waterland #define ERR_PKGADDCHK_SPCFAILED gettext("Space checking failed.") 5475c51f124SMoriah Waterland #define ERR_PKGASK_AND_IGNORE_SIG gettext("cannot use the -i option with pkgask") 5485c51f124SMoriah Waterland #define ERR_PKGASK_AND_KEYSTORE_FILE gettext("cannot use the -k option with pkgask") 5495c51f124SMoriah Waterland #define ERR_PKGASK_AND_NOINTERACT gettext("cannot use the -n option with pkgask") 5505c51f124SMoriah Waterland #define ERR_PKGASK_AND_PROXY gettext("cannot use the -x option with pkgask") 5515c51f124SMoriah Waterland #define ERR_PKGASK_AND_SPOOLDIR gettext("cannot use the -s option with pkgask") 5525c51f124SMoriah Waterland #define ERR_PKGASK_AND_URI gettext("cannot use web based sources via -d with pkgask") 5535c51f124SMoriah Waterland #define ERR_PKGBINCP gettext("unable to copy <%s>\n\tto <%s>") 5545c51f124SMoriah Waterland #define ERR_PKGBINREN gettext("unable to rename <%s>\n\tto <%s>") 5555c51f124SMoriah Waterland #define ERR_PKGINFO gettext("unable to open pkginfo file <%s>") 5565c51f124SMoriah Waterland #define ERR_PKGINFO_ATTR_ADDED gettext("package <%s> is attempting to add the package attribute <%s>: this attribute cannot be added once the package is installed") 5575c51f124SMoriah Waterland #define ERR_PKGINFO_ATTR_CHANGED gettext("package <%s> is attempting to change the package attribute <%s> from <%s> to <%s>: this attribute cannot be changed once the package is installed") 5585c51f124SMoriah Waterland #define ERR_PKGINSTALL_GZONLY_ADD gettext("unable to add package <%s> to global zone only package list file") 5595c51f124SMoriah Waterland #define ERR_PKGINSTALL_STATOF gettext("unable to get space usage of <%s>: %s") 5605c51f124SMoriah Waterland #define ERR_PKGINSTALL_STATVFS gettext("unable to determine file system space for <%s>: %s") 5615c51f124SMoriah Waterland #define ERR_PKGMAP gettext("unable to open pkgmap file <%s>") 5625c51f124SMoriah Waterland #define ERR_PKGOPS_CANNOT_OPEN_GZONLY gettext("unable to open global zone only package list file at <%s>") 5635c51f124SMoriah Waterland #define ERR_PKGOPS_LOCHIGH_BAD_PKGNAME gettext("package name is not valid: %s") 5645c51f124SMoriah Waterland #define ERR_PKGOPS_OPEN_GZONLY gettext("unable to open global zone only package list file <%s>: %s") 5655c51f124SMoriah Waterland #define ERR_PKGOPS_TMPOPEN gettext("unable to create temporary global zone only package list file <%s>: %s") 5665c51f124SMoriah Waterland #define ERR_PKGREMOVE_GZONLY_REMOVE gettext("unable to remove package <%s> from global zone only package list file") 5675c51f124SMoriah Waterland #define ERR_PKGRMCHK_DEPFAILED gettext("Dependency checking failed.") 5685c51f124SMoriah Waterland #define ERR_PKGRMCHK_PRIVFAILED gettext("Privilege checking failed.") 5695c51f124SMoriah Waterland #define ERR_PKGS_AND_CAT_PKGADD gettext("cannot specify both a list of packages and a category (-Y) to install") 5705c51f124SMoriah Waterland #define ERR_PKGS_AND_CAT_PKGRM gettext("cannot specify both a list of packages and a category (-Y) to remove") 5715c51f124SMoriah Waterland #define ERR_PKGUNMOUNT gettext("unable to unmount <%s>") 5725c51f124SMoriah Waterland #define ERR_PKGVOL gettext("unable to obtain package volume") 5735c51f124SMoriah Waterland #define ERR_PKGZONEINSTALL_NO_STREAM gettext("internal error - package to install in zone not in stream format") 5745c51f124SMoriah Waterland #define ERR_PKG_NOT_APPLICABLE gettext("package <%s> cannot be installed on this system/zone") 5755c51f124SMoriah Waterland #define ERR_PKG_NOT_INSTALLABLE gettext("unable to install package <%s>") 5765c51f124SMoriah Waterland #define ERR_PKG_NOT_REMOVABLE gettext("unable to remove package <%s>") 5775c51f124SMoriah Waterland #define ERR_POSTINSTALL gettext("postinstall script did not complete successfully") 5785c51f124SMoriah Waterland #define ERR_POSTREMOVE gettext("postremove script did not complete successfully") 5795c51f124SMoriah Waterland #define ERR_PREINSTALL gettext("preinstall script did not complete successfully") 5805c51f124SMoriah Waterland #define ERR_PREIVFY_NOFILE gettext("unable to perform preinstallation check of package <%s> in zone <%s>") 5815c51f124SMoriah Waterland #define ERR_PREIVFY_OPEN_FILE gettext("unable to examine preinstallation check file <%s> for package <%s> in zone <%s>: %s") 5825c51f124SMoriah Waterland #define ERR_PREIVFY_UNKNOWN_LINE gettext("unknown preinstallation dependency check line <%s> for package <%s> zone <%s>: ignored") 5835c51f124SMoriah Waterland #define ERR_PRENCI gettext("The <%s> package \"%s\" is a prerequisite package and is not completely installed.") 5845c51f124SMoriah Waterland #define ERR_PREREMOVE gettext("preremove script did not complete successfully") 5855c51f124SMoriah Waterland #define ERR_PREREQ gettext("The <%s> package \"%s\" is a prerequisite package and should be installed.") 5865c51f124SMoriah Waterland #define ERR_PRERVFY_NOFILE gettext("unable to perform preremoval check of package <%s> in zone <%s>") 5875c51f124SMoriah Waterland #define ERR_PRERVFY_OPEN_FILE gettext("unable to examine preremoval check file <%s> for package <%s> in zone <%s>: %s") 5885c51f124SMoriah Waterland #define ERR_PRERVFY_UNKNOWN_LINE gettext("unknown preremoval dependency check line <%s> for package <%s> zone <%s>: ignored") 5895c51f124SMoriah Waterland #define ERR_PROXY gettext("Proxy specification <%s> invalid") 5905c51f124SMoriah Waterland #define ERR_RDONLY gettext("read-only parameter <%s> cannot be assigned a value") 5915c51f124SMoriah Waterland #define ERR_READ gettext("unable to read <%s>: (%d) %s") 5925c51f124SMoriah Waterland #define ERR_REMOVE gettext("unable to remove file <%s>: %s") 5935c51f124SMoriah Waterland #define ERR_RENAME gettext("unable to rename <%s> to <%s>: %s") 5945c51f124SMoriah Waterland #define ERR_REQUEST gettext("request script did not complete successfully") 5955c51f124SMoriah Waterland #define ERR_RESOLVEPATH gettext("unable to resolve path <%s>: %s") 5965c51f124SMoriah Waterland #define ERR_RESPFILE gettext("response file is invalid for pre-SVR4 package") 5975c51f124SMoriah Waterland #define ERR_RESPFILE_AND_URI gettext("cannot use -r option with web based sources via -d") 5985c51f124SMoriah Waterland #define ERR_RESPONSE gettext("unable to open response file <%s>") 5995c51f124SMoriah Waterland #define ERR_RMDIR gettext("unable to remove existing directory at <%s>") 6005c51f124SMoriah Waterland #define ERR_RMPATH gettext("unable to remove <%s>") 6015c51f124SMoriah Waterland #define ERR_RMRESP gettext("unable to remove response file <%s>") 6025c51f124SMoriah Waterland #define ERR_ROOT_CMD gettext("Command line install root contends with environment.") 6035c51f124SMoriah Waterland #define ERR_ROOT_SET gettext("Could not set install root from the environment.") 6045c51f124SMoriah Waterland #define ERR_RSP_FILE_NOTFULLPATH gettext("response file <%s> must be full pathname") 6055c51f124SMoriah Waterland #define ERR_RSP_FILE_NOT_GIVEN gettext("response file (to write) is required") 6065c51f124SMoriah Waterland #define ERR_RUNSTATE gettext("unable to determine current run-state") 6075c51f124SMoriah Waterland #define ERR_SCRULIMIT gettext("script <%s> created a file exceeding ULIMIT.") 6085c51f124SMoriah Waterland #define ERR_SML_CANNOT_READ_TAG gettext("cannot read tag") 6095c51f124SMoriah Waterland #define ERR_SML_EOF_BEFORE_TAG_NAME gettext("reading tag: unexpected EOF before reading tag name expecting tag=<%s>") 6105c51f124SMoriah Waterland #define ERR_SML_PARM_SEP_BAD gettext("reading tag: parameter value start found <%c> (0x%02x) expected '\"'") 6115c51f124SMoriah Waterland #define ERR_SML_READTAG_BADPARMNAME_CLOSE gettext("reading tag: expected '>' after '/' to close parm <%s> tag <%s> inside tag <%s>") 6125c51f124SMoriah Waterland #define ERR_SML_READTAG_BADTAG_CLOSE gettext("reading tag: expected '>' after '/' to close tag <%s> inside tag <%s>") 6135c51f124SMoriah Waterland #define ERR_SML_READTAG_BAD_START_CHAR gettext("reading tag: invalid character <%c> (0x%02x) before start of tag") 6145c51f124SMoriah Waterland #define ERR_SML_READTAG_CLOSE_EMPTY_TAG gettext("reading tag: no element name provided before close of tag") 6155c51f124SMoriah Waterland #define ERR_SML_READTAG_CLOSE_NO_PARENT gettext("reading tag: close tag <%s> not within any tag to close") 6165c51f124SMoriah Waterland #define ERR_SML_READTAG_CLOSE_TAG_EOF gettext("reading tag: unexpected EOF reading close tag name expecting tag=<%s>") 6175c51f124SMoriah Waterland #define ERR_SML_READTAG_CLOSE_TAG_ILLCHAR gettext("reading tag: invalid character <%c> (0x%02x) in close tag name <%s>") 6185c51f124SMoriah Waterland #define ERR_SML_READTAG_CLOSE_WRONG_TAG gettext("reading tag: close tag <%s> does not match current tag <%s>") 6195c51f124SMoriah Waterland #define ERR_SML_READTAG_EMPTY_PARMNAME gettext("reading tag: no parameter name provided tag <%s> inside tag <%s>") 6205c51f124SMoriah Waterland #define ERR_SML_READTAG_EMPTY_TAG gettext("reading tag: no element name provided before close of tag inside tag <%s>") 6215c51f124SMoriah Waterland #define ERR_SML_READTAG_PARMNAME_ILLCHAR gettext("reading tag: invalid character <%c> (0x%02x) in parameter name <%s> tag <%s> inside tag <%s>") 6225c51f124SMoriah Waterland #define ERR_SML_READTAG_PARMVAL_EOF gettext("reading tag: unexpected EOF reading parameter value name <%s> tag <%s> inside tag <%s>") 6235c51f124SMoriah Waterland #define ERR_SML_READTAG_PARMVAL_NL gettext("reading tag: unexpected newline reading parameter value name <%s> tag <%s> inside tag <%s>") 6245c51f124SMoriah Waterland #define ERR_SML_READTAG_PARM_EOF gettext("reading tag: unexpected EOF reading parameter name tag <%s> inside tag <%s>") 6255c51f124SMoriah Waterland #define ERR_SML_READTAG_TAG_EOF gettext("reading tag: unexpected EOF reading tag name <%s> inside tag <%s>") 6265c51f124SMoriah Waterland #define ERR_SML_READTAG_TAG_ILLCHAR gettext("reading tag: invalid character <%c> (0x%02x) in tag name <%s>") 6275c51f124SMoriah Waterland #define ERR_SNPRINTF gettext("Not enough memory to format, %s") 6285c51f124SMoriah Waterland #define ERR_SPOOLDIR_AND_ADMNFILE gettext("cannot use the -s option with the -a option") 6295c51f124SMoriah Waterland #define ERR_SPOOLDIR_AND_INST_ROOT gettext("cannot use the -s option with the -R option") 6305c51f124SMoriah Waterland #define ERR_SPOOLDIR_AND_NOINTERACT gettext("cannot use the -s option with the -n option") 6315c51f124SMoriah Waterland #define ERR_SPOOLDIR_AND_PKGRMREMOTE gettext("cannot use the -s option with the -A option") 6325c51f124SMoriah Waterland #define ERR_SPOOLDIR_AND_PKGVERBOSE gettext("cannot use the -s option with the -v option") 6335c51f124SMoriah Waterland #define ERR_SPOOLDIR_AND_RESPFILE gettext("cannot use the -s option with the -r option") 6345c51f124SMoriah Waterland #define ERR_SPOOLDIR_CANNOT_BE_SYS gettext("the -s option cannot specify %s") 6355c51f124SMoriah Waterland #define ERR_SPOOLDIR_USED_WITH_G gettext("the -G option cannot be used with the -s option") 6365c51f124SMoriah Waterland #define ERR_SPOOLDIR_USED_WITH_Z gettext("the zonelist option cannot be used with the -s option") 6375c51f124SMoriah Waterland #define ERR_STAT gettext("unable to stat <%s>: %s") 6385c51f124SMoriah Waterland #define ERR_STREAMDIR gettext("unable to make temporary directory to unpack datastream: %s") 6395c51f124SMoriah Waterland #define ERR_STREAM_UNAVAILABLE gettext("unable to open stream <%s> for package <%s>: %s") 6405c51f124SMoriah Waterland #define ERR_SYSINFO gettext("unable to process installed package information, errno=%d") 6415c51f124SMoriah Waterland #define ERR_THISZONE_AND_Z_USED gettext("The package <%s> has <%s> = true: the -Z option may not be used to extend this type of package to all non-global zones") 6425c51f124SMoriah Waterland #define ERR_TMPFILE gettext("unable to establish temporary file") 6435c51f124SMoriah Waterland #define ERR_TMPFILE_CHK gettext("unable to create temporary checkinstall script") 6445c51f124SMoriah Waterland #define ERR_TMPRESP gettext("unable to create temporary response file") 6455c51f124SMoriah Waterland #define ERR_TOO_MANY_CMD_ARGS gettext("too many arguments to command") 6465c51f124SMoriah Waterland #define ERR_TOO_MANY_PKGS gettext("too many packages referenced specified at the end of the command line: only one package may be specified") 6475c51f124SMoriah Waterland #define ERR_UNKNOWN_DEPENDENCY gettext("unknown dependency type specified: %c\n") 6485c51f124SMoriah Waterland #define ERR_UNKNOWN_DEV gettext("unknown device <%s>") 6495c51f124SMoriah Waterland #define ERR_UNPACK_DSREAD gettext("unable to read part <%d> of stream <%s> to directory <%s> for package <%s>") 6505c51f124SMoriah Waterland #define ERR_UNPACK_FMKDIR gettext("unable to create temporary package area <%s>: %s") 6515c51f124SMoriah Waterland #define ERR_UNSUCC gettext("(A previous attempt may have been unsuccessful.)") 6525c51f124SMoriah Waterland 6535c51f124SMoriah Waterland #ifdef Z_OPTION_IS_SUPPORTED 6545c51f124SMoriah Waterland #define ERR_USAGE_PKGADD_GLOBALZONE gettext("usage:\n\t%s [-nvi] [-d device] [[-M] -R host_path] [-V fs_file] [-a admin_file] [-r response] [-x proxy] [-k keystore] [-G|-Z] [-P passwd] [-Y category[,category ...] | pkg [pkg ...]]\n\t%s -s dir [-d device] [-x proxy] [-k keystore] [-G|-Z] [-P passwd] [-Y category[,category ...] | pkg [pkg ...]]\n") 6555c51f124SMoriah Waterland #else 6565c51f124SMoriah Waterland #define ERR_USAGE_PKGADD_GLOBALZONE gettext("usage:\n\t%s [-nvi] [-d device] [[-M] -R host_path] [-V fs_file] [-a admin_file] [-r response] [-x proxy] [-k keystore] [-G] [-P passwd] [-Y category[,category ...] | pkg [pkg ...]]\n\t%s -s dir [-d device] [-x proxy] [-k keystore] [-G] [-P passwd] [-Y category[,category ...] | pkg [pkg ...]]\n") 6575c51f124SMoriah Waterland #endif 6585c51f124SMoriah Waterland 6595c51f124SMoriah Waterland #define ERR_USAGE_PKGADD_NONGLOBALZONE gettext("usage:\n\t%s [-nvi] [-d device] [[-M] -R host_path] [-V fs_file] [-a admin_file] [-r response] [-x proxy] [-k keystore] [-P passwd] [-Y category[,category ...] | pkg [pkg ...]]\n\t%s -s dir [-d device] [-x proxy] [-k keystore] [-P passwd] [-Y category[,category ...] | pkg [pkg ...]]\n") 6605c51f124SMoriah Waterland #define ERR_USAGE_PKGASK gettext("usage: %s -r response [-d device] [-R host_path] [-Y category[,category ...]] | [pkg [pkg ...]]\n") 6615c51f124SMoriah Waterland #define ERR_USAGE_PKGINSTALL gettext("usage:\n\tpkginstall [-o] [-n] [-d device] [-m mountpt [-f fstype]] [-v] [[-M] -R host_path] [-V fs_file] [-b bindir] [-a admin_file] [-r resp_file] [-N calling_prog] directory pkginst\n") 6625c51f124SMoriah Waterland #define ERR_USAGE_PKGREMOVE gettext("usage:\n\tpkgremove [-a admin_file] [-n] [-V ...] [[-M|-A] -R host_path] [-v] [-o] [-N calling_prog] pkginst\n") 6635c51f124SMoriah Waterland #define ERR_USAGE_PKGRM gettext("usage:\n\t%s [-a admin] [-n] [[-M|-A] -R host_path] [-V fs_file] [-v] [-Y category[,category ...] | pkg [pkg ...]]\n\t%s -s spool [-Y category[,category ...] | pkg [pkg ...]]\n") 6645c51f124SMoriah Waterland #define ERR_VALINST gettext(" Allowable instances include (in order of preference:)\n") 6655c51f124SMoriah Waterland #define ERR_V_USED_AND_PKGRMREMOTE gettext("cannot use the -V option with the -A option") 6665c51f124SMoriah Waterland #define ERR_V_USED_WITH_GZS gettext("cannot use the -V option when non-global zones exist") 6675c51f124SMoriah Waterland #define ERR_WARNING gettext("WARNING:") 6685c51f124SMoriah Waterland #define ERR_WRITE gettext("unable to write <%s>: (%d) %s") 6695c51f124SMoriah Waterland #define ERR_WTMPFILE gettext("unable to write temporary file <%s>") 6705c51f124SMoriah Waterland #define ERR_ZONETEMPDIR gettext("unable to make temporary directory for non-global zone operations in directory <%s>: %s") 6715c51f124SMoriah Waterland #define ERR_Z_USED_IN_NONGLOBAL_ZONE gettext("the zonelist option may not be used in a non-global zone") 6725c51f124SMoriah Waterland #define ERR_CANNOT_ENABLE_LOCAL_FS gettext("Failed to enable the filesystem/local service.\n") 6735c51f124SMoriah Waterland #define ERR_CANNOT_RESTORE_LOCAL_FS gettext("Failed to bring the filesystem/local service back to its original state.\n") 6745c51f124SMoriah Waterland 6755c51f124SMoriah Waterland /* 6765c51f124SMoriah Waterland * I18N: these messages are help messages that are displayed when the 6775c51f124SMoriah Waterland * user answers a question with "?" - asking for help to be displayed 6785c51f124SMoriah Waterland */ 6795c51f124SMoriah Waterland 6805c51f124SMoriah Waterland #define HLP_PKGADDCHK_CONFLICT gettext("If you choose to install conflicting files, the files listed above will be overwritten and/or have their access permissions changed. If you choose not to install these files, installation will proceed but these specific files will not be installed. Note that sane operation of the software being installed may require these files be installed; thus choosing to not to do so may cause inappropriate operation. If you wish to stop installation of this package, enter 'q' to quit.") 6815c51f124SMoriah Waterland #define HLP_PKGADDCHK_CONT gettext("If you choose 'y', installation of this package will continue. If you want to stop installation of this package, choose 'n'.") 6825c51f124SMoriah Waterland #define HLP_PKGADDCHK_DEPEND gettext("The package being installed has indicated a dependency on the existence (or non-existence) of another software package. If this dependency is not met before continuing, the package may not install or operate properly. If you wish to disregard this dependency, answer 'y' to continue the installation process.") 6835c51f124SMoriah Waterland #define HLP_PKGADDCHK_PARTIAL gettext("Installation of partially installed packages is normally allowable, but some packages providers may suggest that a partially installed package be completely removed before re-attempting installation. Check the documentation provided with this package, and then answer 'y' if you feel it is advisable to continue the installation process.") 6845c51f124SMoriah Waterland #define HLP_PKGADDCHK_PRIV gettext("During the installation of this package, certain scripts provided with the package will execute with super-user permission. These scripts may modify or otherwise change your system without your knowledge. If you are certain of the origin and trustworthiness of the package being installed, answer 'y' to continue the installation process.") 6855c51f124SMoriah Waterland #define HLP_PKGADDCHK_SETUID gettext("The package being installed appears to contain processes which will have their effective user or group ids set upon execution. History has shown that these types of processes can be a source of security problems on your system. If you choose not to install these as setuid files, installation will proceed but these specific files will be installed as regular files with setuid and/or setgid permissions reset. Note that sane operation of the software being installed may require that these files be installed with setuid or setgid permissions as delivered; thus choosing to install them as regular files may cause inappropriate operation. If you wish to stop installation of this package, enter 'q' to quit.") 6865c51f124SMoriah Waterland #define HLP_PKGADDCHK_SPACE gettext("It appears that there is not enough free space on your system in which to install this package. It is possible that one or more filesystems are not properly mounted. Neither installation of the package nor its operation can be guaranteed under these conditions. If you choose to disregard this warning, enter 'y' to continue the installation process.") 6875c51f124SMoriah Waterland #define HLP_PKGREMOVE_DEPEND gettext("Other packages currently installed on the system have indicated a dependency on the package being removed. If removal of this package occurs, it may render other packages inoperative. If you wish to disregard this dependency, answer 'y' to continue the package removal process.") 6885c51f124SMoriah Waterland #define HLP_PKGREMOVE_PRIV gettext("During the removal of this package, certain scripts provided with the package will execute with super-user permission. These scripts may modify or otherwise change your system without your knowledge. If you are certain of the origin of the package being removed and trust its worthiness, answer 'y' to continue the package removal process.") 6895c51f124SMoriah Waterland #define HLP_PKGREMOVE_RUNLEVEL gettext("If this package is not removed in a run-level which has been suggested, it is possible that the package may not remove properly. If you wish to follow the run-level suggestions, answer 'n' to stop the package removal process.") 6905c51f124SMoriah Waterland #define HLP_PKGRMCHK_DEPEND gettext("The package being removed has indicated a dependency on the existence (or non-existence) of another software package. If this dependency is not met before continuing, the package may not remove or operate properly. If you wish to disregard this dependency, answer 'y' to continue the removal process.") 6915c51f124SMoriah Waterland #define HLP_PKGRMCHK_PRIV gettext("During the removal of this package, certain scripts provided with the package will execute with super-user permission. These scripts may modify or otherwise change your system without your knowledge. If you are certain of the origin and trustworthiness of the package being removed, answer 'y' to continue the removal process.") 6925c51f124SMoriah Waterland 6935c51f124SMoriah Waterland #define INFO_INSTALL gettext("\nThe following package is currently installed:") 6945c51f124SMoriah Waterland #define INFO_RMSPOOL gettext("\nRemoving spooled package instance <%s>") 6955c51f124SMoriah Waterland #define INFO_SPOOLED gettext("\nThe following package is currently spooled:") 6965c51f124SMoriah Waterland 6975c51f124SMoriah Waterland #define LOG_GETVOL_RET gettext("getvol() returned <%d>") 6985c51f124SMoriah Waterland 6995c51f124SMoriah Waterland #define MSG_1MORETODO gettext("\nThere is 1 more package to be removed.") 7005c51f124SMoriah Waterland #define MSG_1MORE_INST gettext("\nThere is 1 more package to be installed.") 7015c51f124SMoriah Waterland #define MSG_1MORE_PROC gettext("\nThere is 1 more package to be processed.") 7025c51f124SMoriah Waterland #define MSG_1_PKG_NOT_PROCESSED gettext("\n1 package was not processed!\n") 7035c51f124SMoriah Waterland #define MSG_ATTRIB gettext("%s <attribute change only>") 7045c51f124SMoriah Waterland #define MSG_BASE_USED gettext("Using <%s> as the package base directory.") 7055c51f124SMoriah Waterland #define MSG_BOOTING_ZONE gettext("## Booting non-running zone <%s> into administrative state") 7065c51f124SMoriah Waterland #define MSG_BYPASSING_ZONE gettext("## pkgask - bypassing zone <%s>") 7075c51f124SMoriah Waterland #define MSG_CHECKINSTALL_INTERRUPT_B4_Z gettext("## interrupted: package <%s> not installed") 7085c51f124SMoriah Waterland #define MSG_CHECKINSTALL_PKG_IN_ZONE gettext("## Verifying package <%s> dependencies in zone <%s>") 7095c51f124SMoriah Waterland #define MSG_CHECKREMOVE_PKG_IN_GZ gettext("## Verifying package <%s> dependencies in global zone") 7105c51f124SMoriah Waterland #define MSG_CHECKREMOVE_PKG_IN_ZONE gettext("## Verifying package <%s> dependencies in zone <%s>") 7115c51f124SMoriah Waterland #define MSG_DBUPD_N_N gettext("## Database update of part %d of %d is complete.") 7125c51f124SMoriah Waterland #define MSG_DBUPD_N_N_LZ gettext("## Database update of part %d of %d in zone <%s> is complete.") 7135c51f124SMoriah Waterland #define MSG_DIRBUSY gettext("%s <mount point not removed>") 7145c51f124SMoriah Waterland #define MSG_DOREMOVE_INTERRUPTED gettext("## interrupted: package <%s> not installed") 7155c51f124SMoriah Waterland #define MSG_DOREMOVE_INTERRUPTED_B4_Z gettext("## interrupted: package <%s> not removed") 7165c51f124SMoriah Waterland #define MSG_DRYRUN_DONE gettext("Dryrun complete.") 7175c51f124SMoriah Waterland #define MSG_HRDLINK gettext("%s <linked pathname>") 7185c51f124SMoriah Waterland #define MSG_IMPDIR gettext("%s <implied directory>") 7195c51f124SMoriah Waterland #define MSG_INSERT_VOL gettext("Insert %v into %p.") 7205c51f124SMoriah Waterland #define MSG_INSTALLING_PKG_IN_GZ gettext("## Installing package <%s> in global zone") 7215c51f124SMoriah Waterland #define MSG_INSTALL_INTERRUPT_B4_ZONES gettext("## Interrupted: package <%s> not installed in any non-global zones") 7225c51f124SMoriah Waterland #define MSG_INSTALL_PKG_IN_ZONE gettext("## Installing package <%s> in zone <%s>") 7235c51f124SMoriah Waterland #define MSG_INST_MANY gettext(" %d package pathnames are already properly installed.") 7245c51f124SMoriah Waterland #define MSG_INST_N_N gettext("## Installation of part %d of %d is complete.") 7255c51f124SMoriah Waterland #define MSG_INST_N_N_LZ gettext("## Installation of part %d of %d in zone <%s> is complete.") 7265c51f124SMoriah Waterland #define MSG_INST_ONE gettext(" %d package pathname is already properly installed.") 7275c51f124SMoriah Waterland #define MSG_INS_N_N gettext("## Installing part %d of %d.") 7285c51f124SMoriah Waterland #define MSG_INS_N_N_LZ gettext("## Installing part %d of %d in zone <%s>.") 7295c51f124SMoriah Waterland #define MSG_IS_PRESENT gettext("%s <already present on Read Only file system>") 7305c51f124SMoriah Waterland #define MSG_LOG_ERROR gettext("ERROR") 7315c51f124SMoriah Waterland #define MSG_LOG_WARNING gettext("WARNING") 7325c51f124SMoriah Waterland #define MSG_LOG_DEBUG gettext("DEBUG") 7335c51f124SMoriah Waterland #define MSG_MANMOUNT gettext("Assuming mounts have been provided.") 7345c51f124SMoriah Waterland #define MSG_MORETODO gettext("\nThere are %d more packages to be removed.") 7355c51f124SMoriah Waterland #define MSG_MORE_INST gettext("\nThere are %d more packages to be installed.") 7365c51f124SMoriah Waterland #define MSG_MORE_PROC gettext("\nThere are %d more packages to be processed.") 7375c51f124SMoriah Waterland #define MSG_NOCHANGE gettext("No changes were made to the system.") 7385c51f124SMoriah Waterland #define MSG_NODENAME gettext("(unknown)") 7395c51f124SMoriah Waterland #define MSG_NOTEMPTY gettext("%s <non-empty directory not removed>") 7405c51f124SMoriah Waterland #define MSG_N_PKGS_NOT_PROCESSED gettext("\n%d packages were not processed!\n") 7415c51f124SMoriah Waterland #define MSG_PASSPROMPT gettext("Enter keystore password:") 7425c51f124SMoriah Waterland #define MSG_PKGADDCHK_ABADFILE gettext("\\nPackaging file <%s> is corrupt for %s <%s> on %s <%s>") 7435c51f124SMoriah Waterland #define MSG_PKGADDCHK_BADFILE gettext("\\nPackaging files are corrupt for %s <%s> on %s <%s>.") 7445c51f124SMoriah Waterland #define MSG_PKGADDCHK_CFCONTENT gettext("\\nThe file <%s> is already installed and in use by %s <%s> on %s <%s>.") 7455c51f124SMoriah Waterland #define MSG_PKGADDCHK_CKRUNLVL gettext("\\nThe current run-level of this machine is <s%>, which is not a run-level suggested for installation of the %s <%s> on %s <%s>.") 7465c51f124SMoriah Waterland #define MSG_PKGADDCHK_CNFFAILED gettext("\\nConflict checking issues for %s <%s> on %s <%s>.") 7475c51f124SMoriah Waterland #define MSG_PKGADDCHK_DEPEND gettext("\\nDependency checking issues for %s <%s> on %s <%s>.") 7485c51f124SMoriah Waterland #define MSG_PKGADDCHK_DIRS gettext("\\nThe required packaging directory <%s> cannot be created or accessed for %s <%s> on %s <%s>.") 7495c51f124SMoriah Waterland #define MSG_PKGADDCHK_NEWONLY gettext("\\nA version of %s <%s> is already installed on %s <%s>. Current administration does not allow new instances of an existing package to be created, nor existing instances to be overwritten.") 7505c51f124SMoriah Waterland #define MSG_PKGADDCHK_OVERWRITE gettext("\\nCurrent administration does not allow new instances of a %s <%s> on %s <%s> to be created. However, the installation service was unable to determine which package instance to overwrite.") 7515c51f124SMoriah Waterland #define MSG_PKGADDCHK_PARTINST gettext("\\nThe installation of %s <%s> on %s <%s> previously terminated and installation was never successfully completed.") 7525c51f124SMoriah Waterland #define MSG_PKGADDCHK_PARTREM gettext("\\nThe removal of %s <%s> on %s <%s> was terminated at some point in time, and package removal was only partially completed.") 7535c51f124SMoriah Waterland #define MSG_PKGADDCHK_PKGDIRS gettext("\\nA required packaging directory cannot be created or accessed for %s <%s> on %s <%s>.") 7545c51f124SMoriah Waterland #define MSG_PKGADDCHK_PRENCI gettext("\\nThe package <%s> is a prerequisite package and is not completely installed for %s <%s> on %s <%s>.") 7555c51f124SMoriah Waterland #define MSG_PKGADDCHK_PREREQ gettext("\\nThe package <%s> is a prerequisite package and should be installed for %s <%s> on %s <%s>.") 7565c51f124SMoriah Waterland #define MSG_PKGADDCHK_PRIV gettext("\\nThe %s <%s> contains scripts which will be executed on %s <%s> with super-user permission during the process of installing this package.") 7575c51f124SMoriah Waterland #define MSG_PKGADDCHK_RUNLEVEL gettext("\\n run level <%s> for %s <%s> on %s <%s>.") 7585c51f124SMoriah Waterland #define MSG_PKGADDCHK_SAME gettext("\\nThis appears to be an attempt to install the same architecture and version of %s <%s> which is already installed on %s <%s>. This installation will attempt to overwrite this package.\\n") 7595c51f124SMoriah Waterland #define MSG_PKGADDCHK_SETUID gettext("\\nFiles that are setuid and/or setgid will be installed and/or modified for %s <%s> on %s <%s>.") 7605c51f124SMoriah Waterland #define MSG_PKGADDCHK_SPCFAILED gettext("\\nSpace checking failed for %s <%s> on %s <%s>.") 7615c51f124SMoriah Waterland #define MSG_PKGADDCHK_UNIQ1 gettext("\\nCurrent administration requires that a unique instance of %s <%s> on %s <%s> be created. However, the maximum number of instances of the package which may be supported at one time on the same system has already been met.") 7625c51f124SMoriah Waterland #define MSG_PKGINSTALL_DRYRUN gettext("\nDryrunning install of %s as <%s>\n") 7635c51f124SMoriah Waterland #define MSG_PKGINSTALL_EXECOC_GZ gettext("## Executing checkinstall script.") 7645c51f124SMoriah Waterland #define MSG_PKGINSTALL_EXECOC_LZ gettext("## Executing checkinstall script in zone <%s>.") 7655c51f124SMoriah Waterland #define MSG_PKGINSTALL_EXEPIC_GZ gettext("## Executing postinstall script.") 7665c51f124SMoriah Waterland #define MSG_PKGINSTALL_EXEPIC_LZ gettext("## Executing postinstall script in zone <%s>.") 7675c51f124SMoriah Waterland #define MSG_PKGINSTALL_EXEPOC_GZ gettext("## Executing preinstall script.") 7685c51f124SMoriah Waterland #define MSG_PKGINSTALL_EXEPOC_LZ gettext("## Executing preinstall script in zone <%s>.") 7695c51f124SMoriah Waterland #define MSG_PKGINSTALL_INSIN_GZ gettext("\nInstalling %s as <%s>\n") 7705c51f124SMoriah Waterland #define MSG_PKGINSTALL_INSIN_LZ gettext("\nInstalling %s as <%s> in zone <%s>\n") 7715c51f124SMoriah Waterland #define MSG_PKGREMOVE_DEPEND gettext("Dependency checking failed.") 7725c51f124SMoriah Waterland #define MSG_PKGREMOVE_EXEPIC_GZ gettext("## Executing postremove script.") 7735c51f124SMoriah Waterland #define MSG_PKGREMOVE_EXEPIC_LZ gettext("## Executing postremove script in zone <%s>.") 7745c51f124SMoriah Waterland #define MSG_PKGREMOVE_EXEPOC_GZ gettext("## Executing preremove script.") 7755c51f124SMoriah Waterland #define MSG_PKGREMOVE_EXEPOC_LZ gettext("## Executing preremove script in zone <%s>.") 7765c51f124SMoriah Waterland #define MSG_PKGREMOVE_ID_STR gettext("ID") 7775c51f124SMoriah Waterland #define MSG_PKGREMOVE_NAME_STR gettext("Name") 7785c51f124SMoriah Waterland #define MSG_PKGREMOVE_PRIV gettext("\\nThis package contains scripts which will be executed with super-user permission during the process of removing this package.") 7795c51f124SMoriah Waterland #define MSG_PKGREMOVE_PROCPKG_GZ gettext("## Processing package information.") 7805c51f124SMoriah Waterland #define MSG_PKGREMOVE_PROCPKG_LZ gettext("## Processing package information in zone <%s>.") 7815c51f124SMoriah Waterland #define MSG_PKGREMOVE_REMPATHCLASS_GZ gettext("## Removing pathnames in class <%s>") 7825c51f124SMoriah Waterland #define MSG_PKGREMOVE_REMPATHCLASS_LZ gettext("## Removing pathnames in class <%s> in zone <%s>") 7835c51f124SMoriah Waterland #define MSG_PKGREMOVE_RUNLEVEL gettext("\\nThe current run-level of this machine is <%s>, which is not a run-level suggested for removal of this package. Suggested run-levels (in order of preference) include:") 7845c51f124SMoriah Waterland #define MSG_PKGREMOVE_UPDINF_GZ gettext("## Updating system information.") 7855c51f124SMoriah Waterland #define MSG_PKGREMOVE_UPDINF_LZ gettext("## Updating system information in zone <%s>.") 7865c51f124SMoriah Waterland #define MSG_PKGRMCHK_CKRUNLVL gettext("\\nThe current run-level of this machine is <s%>, which is not a run-level suggested for removal of the %s <%s> on %s <%s>.") 7875c51f124SMoriah Waterland #define MSG_PKGRMCHK_DEPEND gettext("\\nDependency checking failed for %s <%s> on %s <%s>.") 7885c51f124SMoriah Waterland #define MSG_PKGRMCHK_DEPSONME gettext("\\nThe package <%s> depends on %s <%s> currently being removed from %s <%s>.") 7895c51f124SMoriah Waterland #define MSG_PKGRMCHK_PRENCI gettext("\\nThe package <%s> is a prerequisite package and is not completely installed for %s <%s> on %s <%s>.") 7905c51f124SMoriah Waterland #define MSG_PKGRMCHK_PREREQ gettext("\\nThe package <%s> is a prerequisite package and should be removed for %s <%s> on %s <%s>.") 7915c51f124SMoriah Waterland #define MSG_PKGRMCHK_PRIV gettext("\\nThe %s <%s> contains scripts which will be executed on %s <%s> with super-user permission during the process of removing this package.") 7925c51f124SMoriah Waterland #define MSG_PKGRMCHK_RUNLEVEL gettext("\\n run level <%s> for %s <%s> on %s <%s>.") 7935c51f124SMoriah Waterland #define MSG_PKGSCRIPTS_FOUND gettext("Package scripts were found.") 7945c51f124SMoriah Waterland #define MSG_PREIVFY_GETYORN_SUSP gettext("\\nInstallation of <%s> was suspended (interaction required).") 7955c51f124SMoriah Waterland #define MSG_PREIVFY_GETYORN_TERM gettext("\\nInstallation of <%s> was terminated.") 7965c51f124SMoriah Waterland #define MSG_PREIVFY_GETYORN_TERM_USER gettext("\\nInstallation of <%s> was terminated due to user request.") 7975c51f124SMoriah Waterland #define MSG_PREREMOVE_REMINST gettext("\n## Removing installed package instance <%s>") 7985c51f124SMoriah Waterland #define MSG_PRERVFY_GETYORN_SUSP gettext("\\nRemoval of <%s> was suspended (interaction required).") 7995c51f124SMoriah Waterland #define MSG_PRERVFY_GETYORN_TERM gettext("\\nRemoval of <%s> was terminated.") 8005c51f124SMoriah Waterland #define MSG_PRERVFY_GETYORN_TERM_USER gettext("\\nRemoval of <%s> was terminated due to user request.") 8015c51f124SMoriah Waterland #define MSG_PROCMV gettext("- executing process moved to <%s>") 8025c51f124SMoriah Waterland #define MSG_PROC_CONT gettext("\nProcessing continuation packages from <%s>") 8035c51f124SMoriah Waterland #define MSG_PROC_INST gettext("\nProcessing package instance <%s> from <%s>") 8045c51f124SMoriah Waterland #define MSG_REMOVE_PKG_FROM_ZONE gettext("## Removing package <%s> from zone <%s>") 8055c51f124SMoriah Waterland #define MSG_RESTORE_ZONE_STATE gettext("## Restoring state of global zone <%s>") 8065c51f124SMoriah Waterland #define MSG_RMSRVR gettext("%s <removed from server's file system>") 8075c51f124SMoriah Waterland #define MSG_SERVER gettext("%s <server package pathname not removed>") 8085c51f124SMoriah Waterland #define MSG_SHARED gettext("%s <shared pathname not removed>") 8095c51f124SMoriah Waterland #define MSG_SHIGN gettext("%s <conflicting pathname not installed>") 8105c51f124SMoriah Waterland #define MSG_SKIPPING_ZONE_NOT_RUNNABLE gettext("## Not processing zone <%s>: the zone is not running and cannot be booted") 8115c51f124SMoriah Waterland #define MSG_SLINK gettext("%s <symbolic link>") 8125c51f124SMoriah Waterland #define MSG_SUSPEND_ADD gettext("Installation of <%s> has been suspended.") 8135c51f124SMoriah Waterland #define MSG_SUSPEND_RM gettext("Removals of <%s> has been suspended.") 8145c51f124SMoriah Waterland #define MSG_UGID gettext("%s <installed with setuid/setgid bits reset>") 8155c51f124SMoriah Waterland #define MSG_UGMOD gettext("%s <reset setuid/setgid bits>") 8165c51f124SMoriah Waterland #define MSG_VERIFYING gettext("Verifying signer <%s>") 8175c51f124SMoriah Waterland #define MSG_VERIFYING_CLASS gettext("[ verifying class <%s> ]") 8185c51f124SMoriah Waterland 8195c51f124SMoriah Waterland #define PASSWD_CMDLINE gettext("## WARNING: USING \"%s\" MAKES PASSWORD VISIBLE TO ALL USERS.") 8205c51f124SMoriah Waterland #define SPECIAL_ACCESS gettext("unable to maintain package contents text due to an access failure: %s") 8215c51f124SMoriah Waterland #define SPECIAL_INPUT gettext("unable to maintain package contents text: alternate root path too long") 8225c51f124SMoriah Waterland #define SPECIAL_MALLOC gettext("unable to maintain package contents text due to insufficient memory: %s") 8235c51f124SMoriah Waterland #define SPECIAL_MAP gettext("unable to maintain package contents text due to a failure to map the database into memory: %S") 8245c51f124SMoriah Waterland 8255c51f124SMoriah Waterland #define WRN_BAD_FORK gettext("WARNING: bad fork(), errno=%d: %s") 8265c51f124SMoriah Waterland #define WRN_BAD_WAIT gettext("WARNING: wait for process %ld failed, pid <%ld> status <0x%08lx> errno <%d> (%s)") 8275c51f124SMoriah Waterland #define WRN_CHKINSTALL gettext("checkinstall script suspends") 8285c51f124SMoriah Waterland #define WRN_DEF_MODE gettext("WARNING: installing <%s> with default mode of 644") 8295c51f124SMoriah Waterland #define WRN_SET_DEF_MODE gettext("WARNING: setting mode of <%s> to default mode (%o)") 8305c51f124SMoriah Waterland #define WRN_FINALCK_ATTR gettext("WARNING: attribute verification of <%s> failed") 8315c51f124SMoriah Waterland #define WRN_FINALCK_CONT gettext("WARNING: content verification of <%s> failed") 8325c51f124SMoriah Waterland #define WRN_FLMAIL gettext("WARNING: e-mail notification may have failed") 8335c51f124SMoriah Waterland #define WRN_FSTAB_MOUNT gettext("WARNING: unable to mount client's file system at %s - errcode=%d") 8345c51f124SMoriah Waterland #define WRN_FSTAB_UMOUNT gettext("WARNING: unable to unmount client's file system at %s - errcode=%d.") 8355c51f124SMoriah Waterland #define WRN_INSTVOL_NONE gettext("WARNING: %s <not present on Read Only file system>") 8365c51f124SMoriah Waterland #define WRN_INSTVOL_NOTDIR gettext("WARNING: %s may not overwrite a populated directory.") 8375c51f124SMoriah Waterland #define WRN_INSTVOL_NOVERIFY gettext("WARNING: %s <cannot install to or verify on %s>") 8385c51f124SMoriah Waterland #define WRN_NOMAIL gettext("WARNING: unable to send e-mail notification") 8395c51f124SMoriah Waterland #define WRN_RELATIVE gettext("attempting to rename a relative file <%s>") 8405c51f124SMoriah Waterland #define WRN_RSCRIPTALT_BAD gettext("WARNING: the admin parameter <%s> is set to <%s> which is not recognized; the parameter may only be set to <%s> or <%s>") 8415c51f124SMoriah Waterland #define WRN_RSCRIPTALT_USING gettext("WARNING: the admin parameter <%s> is assumed to be set to <%s>") 8425c51f124SMoriah Waterland #define WRN_UNKNOWN_ADM_PARAM gettext("WARNING: unknown admin parameter <%s>") 843*6e1ae2a3SGary Pennington #define NOTE_INSTVOL_FINALCKFAIL gettext("NOTE: When the package <%s> was installed in the zone,\nthe file <%s> was also installed. After the file was\ninstalled in the zone, the contents and/or attributes of the file\nchanged. The contents of this file must never be changed.") 8445c51f124SMoriah Waterland 8455c51f124SMoriah Waterland #define MSG_REBOOT gettext("\\n*** IMPORTANT NOTICE ***\\n" \ 8465c51f124SMoriah Waterland "\\tThis machine must now be rebooted in order to " \ 8475c51f124SMoriah Waterland "ensure\\n" \ 8485c51f124SMoriah Waterland "\\tsane operation. Execute\\n\\t\\tshutdown -y -i6 " \ 8495c51f124SMoriah Waterland "-g0\\n" \ 8505c51f124SMoriah Waterland "\\tand wait for the \"Console Login:\" prompt.") 8515c51f124SMoriah Waterland 8525c51f124SMoriah Waterland /* 8535c51f124SMoriah Waterland * These messages are output by qreason() - they are the "reason" 8545c51f124SMoriah Waterland * for the success/fail of the operation 8555c51f124SMoriah Waterland */ 8565c51f124SMoriah Waterland 8575c51f124SMoriah Waterland #define MSG_UNKREQ gettext \ 8585c51f124SMoriah Waterland ("qreason(): unrecognized message request.") 8595c51f124SMoriah Waterland #define MSG_RE_SUC gettext \ 8605c51f124SMoriah Waterland ("Processing of request script was successful.") 8615c51f124SMoriah Waterland #define MSG_IN_SUC0 gettext \ 8625c51f124SMoriah Waterland ("Installation of <%s> was successful.") 8635c51f124SMoriah Waterland #define MSG_IN_SUC1 gettext \ 8645c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 8655c51f124SMoriah Waterland "<%s> was successful.") 8665c51f124SMoriah Waterland #define MSG_RM_SUC0 gettext \ 8675c51f124SMoriah Waterland ("Removal of <%s> was successful.") 8685c51f124SMoriah Waterland #define MSG_RM_SUC1 gettext \ 8695c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s was " \ 8705c51f124SMoriah Waterland "successful.") 8715c51f124SMoriah Waterland #define MSG_RE_FAIL gettext \ 8725c51f124SMoriah Waterland ("Processing of request script failed.") 8735c51f124SMoriah Waterland #define MSG_IN_FAIL0 gettext \ 8745c51f124SMoriah Waterland ("Installation of <%s> failed.") 8755c51f124SMoriah Waterland #define MSG_IN_FAIL1 gettext \ 8765c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 8775c51f124SMoriah Waterland "<%s> failed.") 8785c51f124SMoriah Waterland #define MSG_RM_FAIL0 gettext \ 8795c51f124SMoriah Waterland ("Removal of <%s> failed.") 8805c51f124SMoriah Waterland #define MSG_RM_FAIL1 gettext \ 8815c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s failed.") 8825c51f124SMoriah Waterland #define MSG_RE_PARFAIL gettext \ 8835c51f124SMoriah Waterland ("Processing of request script partially failed.") 8845c51f124SMoriah Waterland #define MSG_IN_PARFAIL0 gettext \ 8855c51f124SMoriah Waterland ("Installation of <%s> partially failed.") 8865c51f124SMoriah Waterland #define MSG_IN_PARFAIL1 gettext \ 8875c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 8885c51f124SMoriah Waterland "<%s> partially failed.") 8895c51f124SMoriah Waterland #define MSG_RM_PARFAIL0 gettext \ 8905c51f124SMoriah Waterland ("Removal of <%s> partially failed.") 8915c51f124SMoriah Waterland #define MSG_RM_PARFAIL1 gettext \ 8925c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s partially " \ 8935c51f124SMoriah Waterland "failed.") 8945c51f124SMoriah Waterland #define MSG_RE_USER gettext \ 8955c51f124SMoriah Waterland ("Processing of request script was terminated due to " \ 8965c51f124SMoriah Waterland "user request.") 8975c51f124SMoriah Waterland #define MSG_IN_USER0 gettext \ 8985c51f124SMoriah Waterland ("Installation of <%s> was terminated due to user " \ 8995c51f124SMoriah Waterland "request.") 9005c51f124SMoriah Waterland #define MSG_IN_USER1 gettext \ 9015c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 9025c51f124SMoriah Waterland "<%s> was terminated due to user request.") 9035c51f124SMoriah Waterland #define MSG_RM_USER0 gettext \ 9045c51f124SMoriah Waterland ("Removal of <%s> was terminated due to user request.") 9055c51f124SMoriah Waterland #define MSG_RM_USER1 gettext \ 9065c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s was " \ 9075c51f124SMoriah Waterland "terminated due to user request.") 9085c51f124SMoriah Waterland #define MSG_RE_SUA gettext \ 9095c51f124SMoriah Waterland ("Processing of request script was suspended " \ 9105c51f124SMoriah Waterland "(administration).") 9115c51f124SMoriah Waterland #define MSG_IN_SUA0 gettext \ 9125c51f124SMoriah Waterland ("Installation of <%s> was suspended (administration).") 9135c51f124SMoriah Waterland #define MSG_IN_SUA1 gettext \ 9145c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 9155c51f124SMoriah Waterland "<%s> was suspended (administration).") 9165c51f124SMoriah Waterland #define MSG_RM_SUA0 gettext \ 9175c51f124SMoriah Waterland ("Removal of <%s> was suspended (administration).") 9185c51f124SMoriah Waterland #define MSG_RM_SUA1 gettext \ 9195c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s was " \ 9205c51f124SMoriah Waterland "suspended (administration).") 9215c51f124SMoriah Waterland #define MSG_RE_SUI gettext \ 9225c51f124SMoriah Waterland ("Processing of request script was suspended " \ 9235c51f124SMoriah Waterland "(interaction required).") 9245c51f124SMoriah Waterland #define MSG_IN_SUI0 gettext \ 9255c51f124SMoriah Waterland ("Installation of <%s> was suspended (interaction " \ 9265c51f124SMoriah Waterland "required).") 9275c51f124SMoriah Waterland #define MSG_IN_SUI1 gettext \ 9285c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 9295c51f124SMoriah Waterland "<%s> was suspended (interaction required).") 9305c51f124SMoriah Waterland #define MSG_RM_SUI0 gettext \ 9315c51f124SMoriah Waterland ("Removal of <%s> was suspended (interaction " \ 9325c51f124SMoriah Waterland "required).") 9335c51f124SMoriah Waterland #define MSG_RM_SUI1 gettext \ 9345c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s was " \ 9355c51f124SMoriah Waterland "suspended (interaction required).") 9365c51f124SMoriah Waterland #define MSG_RE_IEPI gettext \ 9375c51f124SMoriah Waterland ("Processing of request script failed (internal " \ 9385c51f124SMoriah Waterland "error) - package partially installed.") 9395c51f124SMoriah Waterland #define MSG_IN_IEPI0 gettext \ 9405c51f124SMoriah Waterland ("Installation of <%s> failed (internal error) - " \ 9415c51f124SMoriah Waterland "package partially installed.") 9425c51f124SMoriah Waterland #define MSG_IN_IEPI1 gettext \ 9435c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 9445c51f124SMoriah Waterland "<%s> failed (internal error) - package partially " \ 9455c51f124SMoriah Waterland "installed.") 9465c51f124SMoriah Waterland #define MSG_RM_IEPI0 gettext \ 9475c51f124SMoriah Waterland ("Removal of <%s> failed (internal error) - package " \ 9485c51f124SMoriah Waterland "partially installed.") 9495c51f124SMoriah Waterland #define MSG_RM_IEPI1 gettext \ 9505c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s failed " \ 9515c51f124SMoriah Waterland "(internal error) - package partially installed.") 9525c51f124SMoriah Waterland #define MSG_RE_IE gettext \ 9535c51f124SMoriah Waterland ("Processing of request script failed (internal " \ 9545c51f124SMoriah Waterland "error).") 9555c51f124SMoriah Waterland #define MSG_IN_IE0 gettext \ 9565c51f124SMoriah Waterland ("Installation of <%s> failed (internal error).") 9575c51f124SMoriah Waterland #define MSG_IN_IE1 gettext \ 9585c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 9595c51f124SMoriah Waterland "<%s> failed (internal error).") 9605c51f124SMoriah Waterland #define MSG_RM_IE0 gettext \ 9615c51f124SMoriah Waterland ("Removal of <%s> failed (internal error).") 9625c51f124SMoriah Waterland #define MSG_RM_IE1 gettext \ 9635c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s failed " \ 9645c51f124SMoriah Waterland "(internal error).") 9655c51f124SMoriah Waterland #define MSG_RE_UNK gettext \ 9665c51f124SMoriah Waterland ("Processing of request script failed with an " \ 9675c51f124SMoriah Waterland "unrecognized error code.") 9685c51f124SMoriah Waterland #define MSG_IN_UNK0 gettext \ 9695c51f124SMoriah Waterland ("Installation of <%s> failed with an unrecognized " \ 9705c51f124SMoriah Waterland "error code.") 9715c51f124SMoriah Waterland #define MSG_IN_UNK1 gettext \ 9725c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 9735c51f124SMoriah Waterland "<%s> failed with an unrecognized error code.") 9745c51f124SMoriah Waterland #define MSG_RM_UNK0 gettext \ 9755c51f124SMoriah Waterland ("Removal of <%s> failed with an unrecognized error " \ 9765c51f124SMoriah Waterland "code.") 9775c51f124SMoriah Waterland #define MSG_RM_UNK1 gettext \ 9785c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s failed " \ 9795c51f124SMoriah Waterland "with an unrecognized error code.") 9805c51f124SMoriah Waterland /* WITH ZONE NAME */ 9815c51f124SMoriah Waterland #define MSG_UNKREQ_ZONE gettext \ 9825c51f124SMoriah Waterland ("qreason(): unrecognized message request.") 9835c51f124SMoriah Waterland #define MSG_RE_SUC_ZONE gettext \ 9845c51f124SMoriah Waterland ("Processing of request script for zone <%s> was " \ 9855c51f124SMoriah Waterland "successful.") 9865c51f124SMoriah Waterland #define MSG_IN_SUC0_ZONE gettext \ 9875c51f124SMoriah Waterland ("Installation of <%s> on zone <%s> was successful.") 9885c51f124SMoriah Waterland #define MSG_IN_SUC1_ZONE gettext \ 9895c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 9905c51f124SMoriah Waterland "<%s> on zone <%s> was successful.") 9915c51f124SMoriah Waterland #define MSG_RM_SUC0_ZONE gettext \ 9925c51f124SMoriah Waterland ("Removal of <%s> from zone <%s> was successful.") 9935c51f124SMoriah Waterland #define MSG_RM_SUC1_ZONE gettext \ 9945c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from " \ 9955c51f124SMoriah Waterland "zone <%s> was successful.") 9965c51f124SMoriah Waterland #define MSG_RE_FAIL_ZONE gettext \ 9975c51f124SMoriah Waterland ("Processing of request script for zone <%s> failed.") 9985c51f124SMoriah Waterland #define MSG_IN_FAIL0_ZONE gettext \ 9995c51f124SMoriah Waterland ("Installation of <%s> on zone <%s> failed.") 10005c51f124SMoriah Waterland #define MSG_IN_FAIL1_ZONE gettext \ 10015c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 10025c51f124SMoriah Waterland "<%s> on zone <%s> failed.") 10035c51f124SMoriah Waterland #define MSG_RM_FAIL0_ZONE gettext \ 10045c51f124SMoriah Waterland ("Removal of <%s> from zone <%s> failed.") 10055c51f124SMoriah Waterland #define MSG_RM_FAIL1_ZONE gettext \ 10065c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from zone " \ 10075c51f124SMoriah Waterland "<%s> failed.") 10085c51f124SMoriah Waterland #define MSG_RE_PARFAIL_ZONE gettext \ 10095c51f124SMoriah Waterland ("Processing of request script partially failed on " \ 10105c51f124SMoriah Waterland "zone <%s>.") 10115c51f124SMoriah Waterland #define MSG_IN_PARFAIL0_ZONE gettext \ 10125c51f124SMoriah Waterland ("Installation of <%s> on zone <%s> partially failed.") 10135c51f124SMoriah Waterland #define MSG_IN_PARFAIL1_ZONE gettext \ 10145c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 10155c51f124SMoriah Waterland "<%s> on zone <%s> partially failed.") 10165c51f124SMoriah Waterland #define MSG_RM_PARFAIL0_ZONE gettext \ 10175c51f124SMoriah Waterland ("Removal of <%s> from zone <%s> partially failed.") 10185c51f124SMoriah Waterland #define MSG_RM_PARFAIL1_ZONE gettext \ 10195c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from zone " \ 10205c51f124SMoriah Waterland "<%s> partially failed.") 10215c51f124SMoriah Waterland #define MSG_RE_USER_ZONE gettext \ 10225c51f124SMoriah Waterland ("Processing of request script on zone <%s> was " \ 10235c51f124SMoriah Waterland "terminated due to user request.") 10245c51f124SMoriah Waterland #define MSG_IN_USER0_ZONE gettext \ 10255c51f124SMoriah Waterland ("Installation of <%s> on zone <%s> was terminated " \ 10265c51f124SMoriah Waterland "due to user request.") 10275c51f124SMoriah Waterland #define MSG_IN_USER1_ZONE gettext \ 10285c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 10295c51f124SMoriah Waterland "<%s> on zone <%s> was terminated due to user request.") 10305c51f124SMoriah Waterland #define MSG_RM_USER0_ZONE gettext \ 10315c51f124SMoriah Waterland ("Removal of <%s> from zone <%s> was terminated due " \ 10325c51f124SMoriah Waterland "to user request.") 10335c51f124SMoriah Waterland #define MSG_RM_USER1_ZONE gettext \ 10345c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from " \ 10355c51f124SMoriah Waterland "zone <%s> was terminated due to user request.") 10365c51f124SMoriah Waterland #define MSG_RE_SUA_ZONE gettext \ 10375c51f124SMoriah Waterland ("Processing of request script on zone <%s> was " \ 10385c51f124SMoriah Waterland "suspended (administration).") 10395c51f124SMoriah Waterland #define MSG_IN_SUA0_ZONE gettext \ 10405c51f124SMoriah Waterland ("Installation of <%s> on zone <%s> was suspended " \ 10415c51f124SMoriah Waterland "(administration).") 10425c51f124SMoriah Waterland #define MSG_IN_SUA1_ZONE gettext \ 10435c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 10445c51f124SMoriah Waterland "<%s> on zone <%s> was suspended (administration).") 10455c51f124SMoriah Waterland #define MSG_RM_SUA0_ZONE gettext \ 10465c51f124SMoriah Waterland ("Removal of <%s> from zone <%s> was suspended " \ 10475c51f124SMoriah Waterland "(administration).") 10485c51f124SMoriah Waterland #define MSG_RM_SUA1_ZONE gettext \ 10495c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from " \ 10505c51f124SMoriah Waterland "zone <%s> was suspended (administration).") 10515c51f124SMoriah Waterland #define MSG_RE_SUI_ZONE gettext \ 10525c51f124SMoriah Waterland ("Processing of request script on zone <%s> was " \ 10535c51f124SMoriah Waterland "suspended (interaction required).") 10545c51f124SMoriah Waterland #define MSG_IN_SUI0_ZONE gettext \ 10555c51f124SMoriah Waterland ("Installation of <%s> on zone <%s> was suspended " \ 10565c51f124SMoriah Waterland "(interaction required).") 10575c51f124SMoriah Waterland #define MSG_IN_SUI1_ZONE gettext \ 10585c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 10595c51f124SMoriah Waterland "<%s> on zone <%s> was suspended (interaction " \ 10605c51f124SMoriah Waterland "required).") 10615c51f124SMoriah Waterland #define MSG_RM_SUI0_ZONE gettext \ 10625c51f124SMoriah Waterland ("Removal of <%s> from zone <%s> was suspended " \ 10635c51f124SMoriah Waterland "(interaction required).") 10645c51f124SMoriah Waterland #define MSG_RM_SUI1_ZONE gettext \ 10655c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from " \ 10665c51f124SMoriah Waterland "zone <%s> was suspended (interaction required).") 10675c51f124SMoriah Waterland #define MSG_RE_IEPI_ZONE gettext \ 10685c51f124SMoriah Waterland ("Processing of request script on zone <%s> " \ 10695c51f124SMoriah Waterland "failed (internal error) - package partially " \ 10705c51f124SMoriah Waterland "installed.") 10715c51f124SMoriah Waterland #define MSG_IN_IEPI0_ZONE gettext \ 10725c51f124SMoriah Waterland ("Installation of <%s> on zone failed (internal " \ 10735c51f124SMoriah Waterland "error) on zone <%s> - package partially installed.") 10745c51f124SMoriah Waterland #define MSG_IN_IEPI1_ZONE gettext \ 10755c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 10765c51f124SMoriah Waterland " <%s> on zone <%s> failed (internal error) - " \ 10775c51f124SMoriah Waterland "package partially installed.") 10785c51f124SMoriah Waterland #define MSG_RM_IEPI0_ZONE gettext \ 10795c51f124SMoriah Waterland ("Removal of <%s> from zone <%s> failed (internal " \ 10805c51f124SMoriah Waterland "error) - package partially installed.") 10815c51f124SMoriah Waterland #define MSG_RM_IEPI1_ZONE gettext \ 10825c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from " \ 10835c51f124SMoriah Waterland "zone <%s> failed (internal error) - package " \ 10845c51f124SMoriah Waterland "partially installed.") 10855c51f124SMoriah Waterland #define MSG_RE_IE_ZONE gettext \ 10865c51f124SMoriah Waterland ("Processing of request script on zone <%s> failed " \ 10875c51f124SMoriah Waterland "(internal error).") 10885c51f124SMoriah Waterland #define MSG_IN_IE0_ZONE gettext \ 10895c51f124SMoriah Waterland ("Installation of <%s> on zone <%s> failed (internal " \ 10905c51f124SMoriah Waterland "error).") 10915c51f124SMoriah Waterland #define MSG_IN_IE1_ZONE gettext \ 10925c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 10935c51f124SMoriah Waterland "<%s> on zone <%s> failed (internal error).") 10945c51f124SMoriah Waterland #define MSG_RM_IE0_ZONE gettext \ 10955c51f124SMoriah Waterland ("Removal of <%s> on zone <%s> failed (internal " \ 10965c51f124SMoriah Waterland "error).") 10975c51f124SMoriah Waterland #define MSG_RM_IE1_ZONE gettext \ 10985c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from " \ 10995c51f124SMoriah Waterland "zone <%s> failed (internal error).") 11005c51f124SMoriah Waterland #define MSG_RE_UNK_ZONE gettext \ 11015c51f124SMoriah Waterland ("Processing of request script on zone <%s> failed " \ 11025c51f124SMoriah Waterland "with an unrecognized error code.") 11035c51f124SMoriah Waterland #define MSG_IN_UNK0_ZONE gettext \ 11045c51f124SMoriah Waterland ("Installation of <%s> on zone <%s> failed with an " \ 11055c51f124SMoriah Waterland "unrecognized error code.") 11065c51f124SMoriah Waterland #define MSG_IN_UNK1_ZONE gettext \ 11075c51f124SMoriah Waterland ("\nInstallation of %s on %s as package instance " \ 11085c51f124SMoriah Waterland "<%s> on zone <%s> failed with an unrecognized " \ 11095c51f124SMoriah Waterland "error code.") 11105c51f124SMoriah Waterland #define MSG_RM_UNK0_ZONE gettext \ 11115c51f124SMoriah Waterland ("Removal of <%s> from zone <%s> failed with an " \ 11125c51f124SMoriah Waterland "unrecognized error code.") 11135c51f124SMoriah Waterland #define MSG_RM_UNK1_ZONE gettext \ 11145c51f124SMoriah Waterland ("\nRemoval of <%s> package instance on %s from " \ 11155c51f124SMoriah Waterland "zone <%s> failed with an unrecognized error code.") 11165c51f124SMoriah Waterland 11175c51f124SMoriah Waterland #define MSG_UNIQ1 gettext( \ 11185c51f124SMoriah Waterland "\\nCurrent administration requires that a unique " \ 11195c51f124SMoriah Waterland "instance of the <%s> package be created. However, " \ 11205c51f124SMoriah Waterland "the maximum number of instances of the package " \ 11215c51f124SMoriah Waterland "which may be supported at one time on the same " \ 11225c51f124SMoriah Waterland "system has already been met.") 11235c51f124SMoriah Waterland 11245c51f124SMoriah Waterland #define MSG_NOINTERACT gettext( \ 11255c51f124SMoriah Waterland "\\nUnable to determine whether to overwrite an " \ 11265c51f124SMoriah Waterland "existing package instance, or add a new instance.") 11275c51f124SMoriah Waterland 11285c51f124SMoriah Waterland #define MSG_NEWONLY gettext( \ 11295c51f124SMoriah Waterland "\\nA version of the <%s> package is already " \ 11305c51f124SMoriah Waterland "installed on this machine. Current administration " \ 11315c51f124SMoriah Waterland "does not allow new instances of an existing package " \ 11325c51f124SMoriah Waterland "to be created, nor existing instances to be " \ 11335c51f124SMoriah Waterland "overwritten.") 11345c51f124SMoriah Waterland 11355c51f124SMoriah Waterland #define MSG_SAME gettext( \ 11365c51f124SMoriah Waterland "\\nThis appears to be an attempt to install the " \ 11375c51f124SMoriah Waterland "same architecture and version of a package which " \ 11385c51f124SMoriah Waterland "is already installed. This installation will " \ 11395c51f124SMoriah Waterland "attempt to overwrite this package.\\n") 11405c51f124SMoriah Waterland 11415c51f124SMoriah Waterland #define MSG_OVERWRITE gettext( \ 11425c51f124SMoriah Waterland "\\nCurrent administration does not allow new " \ 11435c51f124SMoriah Waterland "instances of an existing package to be created. " \ 11445c51f124SMoriah Waterland "However, the installation service was unable to " \ 11455c51f124SMoriah Waterland "determine which package instance to overwrite.") 11465c51f124SMoriah Waterland 11475c51f124SMoriah Waterland 11485c51f124SMoriah Waterland #define MSG_GETINST_PROMPT0 gettext( \ 11495c51f124SMoriah Waterland "Do you want to overwrite this installed instance") 11505c51f124SMoriah Waterland 11515c51f124SMoriah Waterland #define MSG_GETINST_PROMPT1 gettext( \ 11525c51f124SMoriah Waterland "Do you want to create a new instance of this package") 11535c51f124SMoriah Waterland 11545c51f124SMoriah Waterland #define MSG_GETINST_HELP1 gettext( \ 11555c51f124SMoriah Waterland "The package you are attempting to install already exists " \ 11565c51f124SMoriah Waterland "on this machine. You may choose to create a new instance " \ 11575c51f124SMoriah Waterland "of this package by answering 'y' to this prompt. If you " \ 11585c51f124SMoriah Waterland "answer 'n' you will be asked to choose one of the instances " \ 11595c51f124SMoriah Waterland "which is already to be overwritten.") 11605c51f124SMoriah Waterland 11615c51f124SMoriah Waterland #define MSG_GETINST_HEADER gettext( \ 11625c51f124SMoriah Waterland "The following instance(s) of the <%s> package are already " \ 11635c51f124SMoriah Waterland "installed on this machine:") 11645c51f124SMoriah Waterland 11655c51f124SMoriah Waterland #define MSG_GETINST_PROMPT2 gettext( \ 11665c51f124SMoriah Waterland "Enter the identifier for the instance that you want to " \ 11675c51f124SMoriah Waterland "overwrite") 11685c51f124SMoriah Waterland 11695c51f124SMoriah Waterland #define MSG_GETINST_HELP2 gettext( \ 11705c51f124SMoriah Waterland "The package you are attempting to install already exists on " \ 11715c51f124SMoriah Waterland "this machine. You may choose to overwrite one of the " \ 11725c51f124SMoriah Waterland "versions which is already installed by selecting the " \ 11735c51f124SMoriah Waterland "appropriate entry from the menu.") 11745c51f124SMoriah Waterland 11755c51f124SMoriah Waterland /* 11765c51f124SMoriah Waterland * I18N: MSG_GZONLY_FILE_HEADER must NOT be translated! 11775c51f124SMoriah Waterland * ----- This message is placed at the beginning of an internal (private) 11785c51f124SMoriah Waterland * ----- database file. The contents of the message is a warning telling 11795c51f124SMoriah Waterland * ----- anyone who examines the contents of the database to not modify the 11805c51f124SMoriah Waterland * ----- database manually (by hand). 11815c51f124SMoriah Waterland * ----- Do NOT change or translate this text! 11825c51f124SMoriah Waterland */ 11835c51f124SMoriah Waterland 11845c51f124SMoriah Waterland #define MSG_GZONLY_FILE_HEADER \ 11855c51f124SMoriah Waterland "# DO NOT EDIT THIS FILE BY HAND. This file is not a public interface.\n" \ 11865c51f124SMoriah Waterland "# The format and contents of this file are subject to change.\n" \ 11875c51f124SMoriah Waterland "# Any user modification to this file may result in the incorrect\n" \ 11885c51f124SMoriah Waterland "# operation of the package and patch tools.\n" \ 11895c51f124SMoriah Waterland "# Last modified by <%s> to <%s> package <%s>\n# %s" 11905c51f124SMoriah Waterland 11915c51f124SMoriah Waterland /* END CSTYLED */ 11925c51f124SMoriah Waterland 11935c51f124SMoriah Waterland #ifdef __cplusplus 11945c51f124SMoriah Waterland } 11955c51f124SMoriah Waterland #endif 11965c51f124SMoriah Waterland 11975c51f124SMoriah Waterland #endif /* _MESSAGES_H */ 1198