diff --git a/src/nhttpd/yhttpd_core/ylanguage.cpp b/src/nhttpd/yhttpd_core/ylanguage.cpp index 0e0e5189c..7c56f80ec 100644 --- a/src/nhttpd/yhttpd_core/ylanguage.cpp +++ b/src/nhttpd/yhttpd_core/ylanguage.cpp @@ -103,6 +103,8 @@ std::string CLanguage::getTranslation(std::string id){ trans=NeutrinoLanguage->getString(id,""); if(trans.empty()) trans=DefaultLanguage->getString(id,""); + if (trans.empty()) + trans = "# " + id + " #"; return trans; } //-----------------------------------------------------------------------------