17184e Update cli_printMessage.sh:

Authored and Committed by areguera 13 years ago
    Update cli_printMessage.sh:
    
        - The `--as-design-line' option is no longer available. Instead,
          use the `--as-validating-line' option. In this specific case and
          time, I don't see a reason to retain design line when validating
          do both refering to design file and also that it is being
          validated. Another reason is when a validation error occurs,
          the validating line must be the last message before the error,
          not design line.
    
    
        
Scripts/Functions/cli_printMessage.sh CHANGED
@@ -121,10 +121,11 @@ function cli_printMessage {
121
121
cli_printMessage "`gettext "Translation"`: $MESSAGE"
122
122
;;
123
123
124
- --as-design-line )
125
- cli_printMessage "`gettext "Design"`: $MESSAGE"
124
+ --as-validating-line )
125
+ cli_printMessage "`gettext "Validating"`: $MESSAGE"
126
126
;;
127
127
128
+
128
129
--as-configuration-line )
129
130
cli_printMessage "`gettext "Configuration"`: $MESSAGE"
130
131
;;