# Config Resource Bundle # # Usage Notes: # # 1) Message keys should follow the pattern: _xxx where # is an identifier for a set of similar messages. They may # be used from within the same class or they may all deal with # the UI or with communication. # xxx is a 3 digit number to uniquely identify the text within a grouping. # # 2) The first item in the message body should be the message key. This will make it # easier to find where this message is being used within Config. It also makes it easier # for someone to describe the message they are seeing (e.g. Saying "comm_021" is much clearer # than reading the entire message text. # # 3) Clearly explain what the replacement text is. Translators will need to know what each # piece of replacement text will be so they can correctly translate the text. # # 4) If the replacement text is a date, time or number, see the MEssageFormat class for information # about how specific formatting information can be included with the replacement text id number. # A simple example is {1,time} to format a time and {2,date} to format a date. # # Example. # # {0}: First replacement text # {1}: Second replacement text # example_010 = Example_010: This is the first replacement text {0}. This is the second {1}. # # # # # # SystemLogEntry Messages: # # When using the log() methods found in the SystemLog helper class, you can create messages # that have 2nd level help and severity. The format for a compound message is as follows: # MyMsg = My normal parameterized {0} message. # MyMsg_DETAILS = My detailed parameterized {0} message that includes all the gory details and potential user actions. # MyMsg_SEVERITY = 1 # MyMsg_ID = common_023 # # Note that the _DETAILS and _SEVERITY message resources are entirely optional. If they # are not present then the message will be a simple single level message. A resource for # _SEVERITY will override the severity specified on the log call. The potential severity # values are: # 0 DEBUG # 1 INFORMATION # 2 WARNING # 3 ERROR # 4 FATAL # # See the following classes for more information: # SystemLog # SystemLogEntry # SystemLogCtlr # # Detail messages can be multi-line with the \n seperator char delineating lines. # ############################################################################################# # Device messages ############################################################################################# DeviceNotAvailable = Unable to connect to device at {0}. DeviceNotAvailable_DETAILS = Unable to fetch information from device at {0}. \nThe device may be off, disconnected, or require a hardware reset. \n \nExamine the error and correct if possible. Otherwise note the details of this error and contact support.\n DeviceNotAvailable_SEVERITY = 3 DeviceNotAvailable_ID = device_000 DeviceValidationError = Device settings are presently invalid and cannot be saved. DeviceValidationError_DETAILS = The device has indicated that some of the proposed settings are not valid.\nSee the message details below to identify the fields. Correct the settings and try again.\n\n{0} DeviceValidationError_SEVERITY = 3 DeviceValidationError_ID = device_001 ############################################################################################# # ConfigView messages ############################################################################################# SaveNotRequired = No changes to save to the device. SaveNotRequired_DETAILS = Only changed fields are saved to the device. Since no fields have been changed, the save was not performed. SaveNotRequired_SEVERITY = 1 SaveNotRequired_ID = view_000 ValidationError = Some of the settings are not valid and cannot be saved to the device. ValidationError_DETAILS = Some of the settings are not valid and cannot be saved to the device.\nSee the message details below to identify the fields. Correct the settings and try again.\n\n{0} ValidationError_SEVERITY = 3 ValidationError_ID = view_001 ############################################################################################# # NetworkBasicView messages ############################################################################################# IpAddressValidationError = The IP Address field contains an invalid IP address IpAddressValidationError_SEVERITY = 3 IpAddressValidationError_ID = networkview_000 SubnetMaskValidationError = The Subnet Mask field contains an invalid network address SubnetMaskValidationError_SEVERITY = 3 SubnetMaskValidationError_ID = networkview_001 GatewayValidationError = The Gateway field contains an invalid IP address GatewayValidationError_SEVERITY = 3 GatewayValidationError_ID = networkview_002 NetworkAssignValidationError = No method of assigning an IP address to this device specified NetworkAssignValidationError_SEVERITY = 3 NetworkAssignValidationError_ID = networkview_003 ############################################################################################# # SerialRealportView messages ############################################################################################# RealportServerPortValidationError = The RealPort server field is invalid [1-65535] RealportServerPortValidationError_SEVERITY = 3 RealportServerPortValidationError_ID = realportview_000 ############################################################################################# # SerialTcpView messages ############################################################################################# SerialTcpServerPortError = The TCP server Raw TCP port field is invalid [1-65535] SerialTcpServerPortError_SEVERITY = 3 SerialTcpServerPortError_ID = tcpview_000 SerialTcpTelnetPortError = The TCP server Telnet port field is invalid [1-65535] SerialTcpTelnetPortError_SEVERITY = 3 SerialTcpTelnetPortError_ID = tcpview_001 SerialTcpSslPortError = The TCP server Secure TCP port field is invalid [1-65535] SerialTcpSslPortError_SEVERITY = 3 SerialTcpSslPortError_ID = tcpview_002 SerialTcpSocketIdError = The TCP serial Socket ID field is invalid or missing (1-40 chars) SerialTcpSocketIdError_SEVERITY = 3 SerialTcpSocketIdError_ID = tcpview_005 SerialTcpIdleTimeoutError = The TCP serial Idle Timeout field is invalid (1-65535) SerialTcpIdleTimeoutError_SEVERITY = 3 SerialTcpIdleTimeoutError_ID = tcpview_006 SerialTcpConnectDestinationError = The Automatically connect to destination field is invalid SerialTcpConnectDestinationError_SEVERITY = 3 SerialTcpConnectDestinationError_ID = tcpview_003 SerialTcpConnectPortError = The Automatically connect to port field is invalid [1-65535] SerialTcpConnectPortError_SEVERITY = 3 SerialTcpConnectPortError_ID = tcpview_004 ############################################################################################# # SerialUdpView messages ############################################################################################# SerialUdpServerPortError = The UDP server port field is invalid [1-65535] SerialUdpServerPortError_SEVERITY = 3 SerialUdpServerPortError_ID = udpview_000 SerialUdpCustomStringError = The Send on Custom string field is empty or invalid SerialUdpCustomStringError_SEVERITY = 3 SerialUdpCustomStringError_ID = udpview_001 SerialUdpSendOnPatternError = No send on data string specified SerialUdpSendOnPatternError_SEVERITY = 3 SerialUdpSendOnPatternError_ID = udpview_002 SerialUdpSendAfterTimeError = The send after idle milliseconds field is invalid [1-65535 ms] SerialUdpSendAfterTimeError_SEVERITY = 3 SerialUdpSendAfterTimeError_ID = udpview_003 SerialUdpSendAfterByteError = The send after bytes field is invalid [4-4096] SerialUdpSendAfterByteError_SEVERITY = 3 SerialUdpSendAfterByteError_ID = udpview_004 SerialUdpDestinationAddressError = The destination field on UDP destination {0} contains an invalid IP address SerialUdpDestinationAddressError_SEVERITY = 3 SerialUdpDestinationAddressError_ID = udpview_005 SerialUdpDestinationPortError = The port field on UDP destination {0} is invalid [1-65535] SerialUdpDestinationPortError_SEVERITY = 3 SerialUdpDestinationPortError_ID = udpview_006 SerialUdpSocketIdError = The UDP serial Socket ID field is invalid or missing (1-40 chars) SerialUdpSocketIdError_SEVERITY = 3 SerialUdpSocketIdError_ID = udpview_007 ############################################################################################# # AlarmGpioView messages ############################################################################################# AlarmSmtpServerError = The server field contains an invalid IP address AlarmSmtpServerError_SEVERITY = 3 AlarmSmtpServerError_ID = gpioview_000 AlarmSmtpFromError = The from field contains an invalid Email address AlarmSmtpFromError_SEVERITY = 3 AlarmSmtpFromError_ID = gpioview_001 AlarmTriggerIntervalError = The trigger field on Alarm {0} contains an invalid amount AlarmTriggerIntervalError_SEVERITY = 3 AlarmTriggerIntervalError_ID = gpioview_002 AlarmToError = The To field on Alarm {0} contains an invalid Email address AlarmToError_SEVERITY = 3 AlarmToError_ID = gpioview_003 AlarmCcError = The CC field on Alarm {0} contains an invalid Email address AlarmCcError_SEVERITY = 3 AlarmCcError_ID = gpioview_004 AlarmSubjectError = The Subject field on Alarm {0} is invalid AlarmSubjectError_SEVERITY = 3 AlarmSubjectError_ID = gpioview_004 ############################################################################################# # BackupView messages ############################################################################################# RestoreFileInvalidError = The specified restore file was not found RestoreFileInvalidError_DETAILS = The file {0} could not be found on the local system. Try respecifying the restore file and try again. RestoreFileInvalidError_SEVERITY = 3 RestoreFileInvalidError_ID = backuprestore_000 ############################################################################################# # RestoreFactoryDefaultsView messages ############################################################################################# RestoreFactoryDefaultsError = Some settings could not be restored. RestoreFactoryDefaultsError_DETAILS = The device could not restore all factory default settings.\nThe following errors were encountered:\n\n{0} RestoreFactoryDefaultsError_SEVERITY = 3 RestoreFactoryDefaultsError_ID = factory_000 ############################################################################################# # SecurityView messages ############################################################################################# SecurityPasswordLengthError = Passwords must be 1 to 15 characters. SecurityPasswordLengthError_SEVERITY = 3 SecurityPasswordLengthError_ID = security_000 SecurityPasswordMismatchError = Passwords do not match. SecurityPasswordMismatchError_SEVERITY = 3 SecurityPasswordMismatchError_ID = security_001 SecurityUserLengthError = User name must be 1 to 15 characters. SecurityUserLengthError_SEVERITY = 3 SecurityUserLengthError_ID = security_002