X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_Translator.h;h=cd7d6e6459e4a009c65145eb0aff194569a88c7f;hb=aba714fbb23139b15272ed816c9a30595165106c;hp=72a305ec97803c1325baa2cdd3037dd6de78b084;hpb=1caca4db4cda17236f7a9f50fc9c620f6a426372;p=modules%2Fshaper.git diff --git a/src/Config/Config_Translator.h b/src/Config/Config_Translator.h index 72a305ec9..cd7d6e645 100644 --- a/src/Config/Config_Translator.h +++ b/src/Config/Config_Translator.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Config_Translator.h -// Created: 31 May 2016 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2021 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef Config_Translator_H #define Config_Translator_H @@ -13,6 +26,8 @@ #include #include + +/// The definition provides collection and writing of missed translations //#define MISSED_TRANSLATION /** @@ -38,22 +53,22 @@ public: /** * Returns translation from the given info message. - * If transdlation is not exists then it returns a string + * If translation is not exists then it returns a string * from the info data without translation * \param theInfo an info message */ - static CONFIG_EXPORT std::string translate(std::shared_ptr theInfo); + static CONFIG_EXPORT std::string translate(const Events_InfoMessage& theInfo); /** * Returns translation from the given data. - * If transdlation is not exists then it returns a string + * If translation is not exists then it returns a string * from the info data without translation * \param theContext context of the message (Feature Id) * \param theMessage a message which dave to be translated * \param theParams a list of parameters (can be empty) */ static CONFIG_EXPORT std::string translate(const std::string& theContext, - const std::string& theMessage, + const std::string& theMessage, const std::list& theParams = std::list()); @@ -63,6 +78,12 @@ public: */ static CONFIG_EXPORT std::string codec(const std::string& theContext); + /** + * Returns codec for the context + * \param theInfo the info + */ + static CONFIG_EXPORT std::string codec(const Events_InfoMessage& theInfo); + #ifdef _DEBUG #ifdef MISSED_TRANSLATION static CONFIG_EXPORT void saveMissedTranslations(); @@ -84,4 +105,4 @@ private: #endif }; -#endif \ No newline at end of file +#endif