From a14a7a0ccc9de76aeab0b2e4bbf58f1a79deedc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 3 Jul 2024 10:19:30 +0200 Subject: New upstream version 5.3.0GA --- app/bin/i18n.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'app/bin/i18n.c') diff --git a/app/bin/i18n.c b/app/bin/i18n.c index e6abe70..8782803 100644 --- a/app/bin/i18n.c +++ b/app/bin/i18n.c @@ -16,7 +16,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include @@ -26,9 +26,9 @@ #include "wlib.h" /** - * Initialize gettext environment. By default, the language files are installed - * in \share\locale\ - * The install dir is derived from the library directory by removing the last + * Initialize gettext environment. By default, the language files are installed + * in \share\locale\ + * The install dir is derived from the library directory by removing the last * directory in the path (xtrkcad) * Directory layout on Windows is: * \bin\ @@ -39,15 +39,15 @@ void InitGettext( void ) { #ifdef XTRKCAD_USE_GETTEXT char directory[2048]; - + setlocale(LC_ALL, ""); - + // build the correct directory path strcpy(directory, wGetAppLibDir()); strcat( directory, "/../locale" ); #ifdef WINDOWS _fullpath( directory, directory, 2048 ); -#endif +#endif // initialize gettext bindtextdomain(XTRKCAD_PACKAGE, directory); bind_textdomain_codeset(XTRKCAD_PACKAGE, "UTF-8"); @@ -55,7 +55,7 @@ void InitGettext( void ) #ifdef VERBOSE printf(_("Gettext initialized (PACKAGE=%s, LOCALEDIR=%s, LC_ALL=%s).\n"), - XTRKCAD_PACKAGE, directory, setlocale(LC_ALL, NULL)); + XTRKCAD_PACKAGE, directory, setlocale(LC_ALL, NULL)); #endif #endif /* XTRKCAD_USE_GETTEXT */ -- cgit v1.2.3