Sha256: f87123b97156206d2dfbaee913e49a3d2d2860fe714937863f5e3f8df472c94c
Contents?: true
Size: 1.29 KB
Versions: 6
Compression:
Stored size: 1.29 KB
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2011 Ruby-GNOME2 Project Team * Copyright (C) 2006 Kouhei Sutou * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301 USA */ #include "rbgprivate.h" #include "rbglib.h" #undef _ #include <glib/gi18n.h> #define RG_TARGET_NAMESPACE mGLib #if GLIB_CHECK_VERSION(2,6,0) static VALUE rg_m_language_names(G_GNUC_UNUSED VALUE self) { return STRV2RVAL((const gchar **)g_get_language_names()); } #endif void Init_glib_i18n(void) { /* glib/gi18n.h */ #if GLIB_CHECK_VERSION(2,6,0) RG_DEF_MODFUNC(language_names, 0); #endif }
Version data entries
6 entries across 6 versions & 1 rubygems