diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-07-03 10:19:49 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-07-03 10:19:49 +0200 |
commit | 8dc8048d2cd4996825470bbfcb1e09e2a2630035 (patch) | |
tree | 9804282102f8c40d27407b9c94119b35eeb5013c /app/bin/i18n.c | |
parent | c9d0740841fbe0539e42e66d3865672bfcd3ac02 (diff) | |
parent | b6bd52cd7330a90fc0e44dbe6022551a8dd768a1 (diff) |
Merge branch 'feature/upstream' into develop
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 */ |