1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
# *************************************************************************
# Copyright (c) 2014-2020, SUSE LLC
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of SUSE LLC nor the names of its contributors may be
# used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# *************************************************************************
#-------------------------------------------------------------#
# CELL_Message_en.pm
#
# App::CELL's own internal messages. This file
# is stored in the "distro sharedir" and is always loaded
# before the files in the application sitedir.
#
# In addition to being used by App::CELL, the files in the
# distro sharedir (CELL_MetaConfig.pm, CELL_Config.pm, and
# CELL_SiteConfig.pm along with CELL_Message_en.conf,
# CELL_Message_cz.conf, etc.) can be used as models for
# populating the application sitedir.
#
# See App::CELL::Guide for details.
#-------------------------------------------------------------#
CELL_TEST_MESSAGE
This is a test message
CELL_TEST_MESSAGE_WITH_ARGUMENT
This a test message with a %s argument.
CELL_SITEDIR_NOT_FOUND
Site configuration directory %s (specified by %s) not found or not viable for reason: %s
# App::CELL::Test
CELL_CREATE_TMPDIR_FAIL
Attempt to create temporary directory produced this error: %s
CELL_UNKNOWN_MESSAGE_CODE
Unknown system message ->%s<-
CELL_CONFIG_LOAD_FAIL
Failed to load ->%s<- because of %s
CELL_BAD_PARAM_TYPE
Bad param type ->%s<- passed to %s in module %s
CELL_CONFIG_PARAM_UNKNOWN
Attempt to access unknown %s param ->%s<-
CELL_OVERWRITE_META_PARAM
Overwriting existing meta parameter %s with new value ->%s<-
CELL_MESSAGE_ARGUMENT_MISMATCH
Arguments given to message ->%s<- do not match message template (sprintf
said ->%s<-)
CELL_MESSAGE_NO_CODE
No message code was given in call to App::CELL::Message->new (args: ->%s<-)
CELL_MESSAGE_CODE_UNDEFINED
Undefined message code was given in call to App::CELL::Message->new (args: ->%s<-)
CELL_MESSAGE_CODE_UNKNOWN
Unknown message code ->%s<- was given
CELL_PARAM_EXISTS_IMMUTABLE
%s param ->%s<- already exists and is immutable
CELL_SHAREDIR_NOT_VIABLE
App::CELL distro sharedir ->%s<- is not viable (%s)
# used for both sharedir and sitedir
CELL_DIR_WALKED_NOTHING_FOUND
No %s files found in %s ->%s<- (%s files examined)
# used for both sharedir and sitedir
CELL_DIR_WALKED_ITEMS_LOADED
Loaded ->%s<- %s from %s files in %s %s
# App::CELL::Load::init
CELL_LOAD_SANITY_MESSAGE
This is a sanity testing message
# App::CELL::Load::init
CELL_LOAD_FAILED_SANITY
App::CELL::Load->init failed its sanity checks
|