Index: openacs-4/packages/acs-lang/tcl/lang-message-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/tcl/lang-message-procs.tcl,v diff -u -N -r1.54.2.1 -r1.54.2.2 --- openacs-4/packages/acs-lang/tcl/lang-message-procs.tcl 10 Sep 2015 08:21:25 -0000 1.54.2.1 +++ openacs-4/packages/acs-lang/tcl/lang-message-procs.tcl 19 Oct 2015 10:22:38 -0000 1.54.2.2 @@ -833,16 +833,10 @@ if { [message_exists_p $locale $key] } { set message [nsv_get lang_message_$locale $key] } else { - if {"TRANSLATION MISSING" != $default} { + if {"TRANSLATION MISSING" ne $default} { set message $default } else { - if {[string match "acs-translations.*" $key]} { - ns_log Debug "lang::message::lookup: Key '$key' does not exist in en_US" - set message "MESSAGE KEY MISSING: '$key'" - } else { - ns_log Error "lang::message::lookup: Key '$key' does not exist in en_US" - set message "MESSAGE KEY MISSING: '$key'" - } + ad_log Error "lang::message::lookup: Key '$key' does not exist in en_US" } } }