2 * Copyright (C) 2012,2013 Toni Gundogdu <legatvs@gmail.com>
4 * This file is part of quvi <http://quvi.sourceforge.net/>.
6 * This program is free software: you can redistribute it and/or
7 * modify it under the terms of the GNU Affero General Public
8 * License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General
17 * Public License along with this program. If not, see
18 * <http://www.gnu.org/licenses/>.
24 #include <glib/gi18n.h>
29 static const gchar
*_property_type
[] =
31 N_("Subtitle language"),
40 /* Check whether a media property could be retrieved. */
41 gint
lutil_chk_property_ok(quvi_t q
, const lutilPropertyType t
,
42 const gchar
*s
, lutil_cb_printerr xperr
)
46 g_assert(xperr
!= NULL
);
50 r
= (quvi_ok(q
) == QUVI_FALSE
) ? EXIT_FAILURE
:EXIT_SUCCESS
;
51 if (r
== EXIT_FAILURE
)
53 xperr(_("libquvi: while trying to retrieve a %s property `%s': %s"),
54 g_dgettext(GETTEXT_PACKAGE
, _property_type
[t
]),
60 /* vim: set ts=2 sw=2 tw=72 expandtab: */