l10n: Eliminated STRING_LOCALIZATION_*

This commit is contained in:
Paul Beckingham 2018-01-20 14:19:24 -05:00
parent 6cf8f18196
commit bf63dde8ca
10 changed files with 0 additions and 93 deletions

View file

@ -102,12 +102,6 @@ int CmdVersion::execute (std::string& output)
#else
<< STRING_CMD_VERSION_UNKNOWN
#endif
#if PACKAGE_LANGUAGE != LANGUAGE_ENG_USA
<< ' '
<< STRING_LOCALIZATION_DESC
#endif
<< '\n'
<< "Copyright (C) 2006 - 2018 P. Beckingham, F. Hernandez."
<< '\n'
@ -117,12 +111,6 @@ int CmdVersion::execute (std::string& output)
<< link.render ()
<< '\n';
#if PACKAGE_LANGUAGE != LANGUAGE_ENG_USA
out << STRING_LOCALIZATION_AUTHOR
<< '\n'
<< '\n';
#endif
output = out.str ();
return 0;
}