Blame src/terminal-i18n.c

Packit d370c2
/*
Packit d370c2
 * Copyright © 2002 Havoc Pennington
Packit d370c2
 *
Packit d370c2
 * This program is free software: you can redistribute it and/or modify
Packit d370c2
 * it under the terms of the GNU General Public License as published by
Packit d370c2
 * the Free Software Foundation, either version 3 of the License, or
Packit d370c2
 * (at your option) any later version.
Packit d370c2
 *
Packit d370c2
 * This program is distributed in the hope that it will be useful,
Packit d370c2
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d370c2
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit d370c2
 * GNU General Public License for more details.
Packit d370c2
 *
Packit d370c2
 * You should have received a copy of the GNU General Public License
Packit d370c2
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit d370c2
 */
Packit d370c2
Packit d370c2
#include "config.h"
Packit d370c2
#include "terminal-i18n.h"
Packit d370c2
Packit d370c2
#include <libintl.h>
Packit d370c2
Packit d370c2
void
Packit d370c2
terminal_i18n_init (gboolean set_default)
Packit d370c2
{
Packit d370c2
  bindtextdomain (GETTEXT_PACKAGE, TERM_LOCALEDIR);
Packit d370c2
  bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
Packit d370c2
Packit d370c2
  if (set_default)
Packit d370c2
    textdomain (GETTEXT_PACKAGE);
Packit d370c2
}