diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-07-03 10:19:30 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-07-03 10:19:30 +0200 |
commit | a14a7a0ccc9de76aeab0b2e4bbf58f1a79deedc2 (patch) | |
tree | e469179df67a0e0db49161a43cbf8076a189f6f4 /app/bin/i18n.c | |
parent | 5d2c2b27a6323e2666378b986129b2a7c2c39e5c (diff) |
New upstream version 5.3.0GAupstream/5.3.0GAupstream
Diffstat (limited to 'app/bin/i18n.c')
-rw-r--r-- | app/bin/i18n.c | 16 |
1 files changed, 8 insertions, 8 deletions
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 <locale.h> @@ -26,9 +26,9 @@ #include "wlib.h" /** - * Initialize gettext environment. By default, the language files are installed - * in <install_dir>\share\locale\<language> - * The install dir is derived from the library directory by removing the last + * Initialize gettext environment. By default, the language files are installed + * in <install_dir>\share\locale\<language> + * The install dir is derived from the library directory by removing the last * directory in the path (xtrkcad) * Directory layout on Windows is: * <install_dir>\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 */ |