From 75f344e025f9296e6902cf3a1b2f0edc38185827 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 2 Jan 2016 17:50:58 +0100 Subject: [PATCH] Added translation. --- Makefile.am | 2 +- configure.ac | 4 ++ po/LINGUAS | 1 + po/POTFILES.in | 5 +++ po/it.po | 82 ++++++++++++++++++++++++++++++++++ src/formelementvalidator.c | 4 +- src/formvalidatorcomparedate.c | 18 +++++--- 7 files changed, 107 insertions(+), 9 deletions(-) create mode 100644 po/LINGUAS create mode 100644 po/POTFILES.in create mode 100644 po/it.po diff --git a/Makefile.am b/Makefile.am index 40286cb..dc08cdf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = src tests +SUBDIRS = po src tests ACLOCAL_AMFLAGS = -I m4 diff --git a/configure.ac b/configure.ac index b9f044d..d86c09b 100644 --- a/configure.ac +++ b/configure.ac @@ -29,6 +29,9 @@ AC_PROG_MAKE_SET AC_PROG_LIBTOOL AC_PROG_RANLIB +GTK_DOC_CHECK(1.0) +IT_PROG_INTLTOOL + dnl ****************************** dnl Translations dnl ****************************** @@ -76,6 +79,7 @@ AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes]) AC_CONFIG_FILES([ libzakform.pc Makefile + po/Makefile.in src/Makefile tests/Makefile ]) diff --git a/po/LINGUAS b/po/LINGUAS new file mode 100644 index 0000000..7d5856f --- /dev/null +++ b/po/LINGUAS @@ -0,0 +1 @@ +it diff --git a/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..0ee7d09 --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,5 @@ +# List of source files which contain translatable strings. +src/form.c +src/formelement.c +src/formelementvalidator.c +src/formvalidatorcomparedate.c diff --git a/po/it.po b/po/it.po new file mode 100644 index 0000000..d0b87e4 --- /dev/null +++ b/po/it.po @@ -0,0 +1,82 @@ +# libzakform italian translation +# Copyright (C) 2015-2016 Andrea Zagli +# This file is distributed under the same license as the libzakform package. +# Andrea Zagli , 2015-2016. +# +msgid "" +msgstr "" +"Project-Id-Version: libzakform 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-02 17:48+0100\n" +"PO-Revision-Date: 2016-01-02 12:44+0200\n" +"Last-Translator: Andrea Zagli \n" +"Language-Team: Italian \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/form.c:336 +#, c-format +msgid "Unknown element type «%s»." +msgstr "Tipo elemento «%s» sconosciuto." + +#: ../src/form.c:380 +msgid "The file is not a valid ZakForm definition file." +msgstr "Il file non è un file di definizione valido di ZakForm." + +#: ../src/form.c:832 +msgid "Unable to load module of myself" +msgstr "Impossibile caricare i moduli di me stesso" + +#: ../src/form.c:862 +#, c-format +msgid "Unable to load %s: %s." +msgstr "Impossibile caricare %s: %s." + +#: ../src/form.c:870 +#, c-format +msgid "Unable to open modules dir: %s." +msgstr "Impossibile aprire la directory dei moduli: %s." + +#: ../src/form.c:871 +msgid "no details" +msgstr "nessun dettaglio" + +#: ../src/form.c:876 +msgid "Modules not supported by this operating system." +msgstr "I moduli non sono supportati in questo sistema operativo" + +#: ../src/formelementvalidator.c:67 +msgid "Invalid value" +msgstr "Valore non valido" + +#: ../src/formvalidatorcomparedate.c:107 +msgid "lesser than" +msgstr "minore di" + +#: ../src/formvalidatorcomparedate.c:108 +msgid "lesser or equal to" +msgstr "minore o uguale a" + +#: ../src/formvalidatorcomparedate.c:109 +msgid "equal to" +msgstr "uguale a" + +#: ../src/formvalidatorcomparedate.c:110 +msgid "different from" +msgstr "diverso da" + +#: ../src/formvalidatorcomparedate.c:111 +msgid "greater than" +msgstr "maggiore di" + +#: ../src/formvalidatorcomparedate.c:112 +msgid "greater or equal to" +msgstr "maggiore o uguale a" + +#: ../src/formvalidatorcomparedate.c:318 +#, c-format +msgid "«%s» must be %s «%s»" +msgstr "«%s» deve essere %s «%s»" diff --git a/src/formelementvalidator.c b/src/formelementvalidator.c index 00705b4..cf0b8e0 100644 --- a/src/formelementvalidator.c +++ b/src/formelementvalidator.c @@ -20,6 +20,8 @@ #include #endif +#include + #include "formelementvalidator.h" enum @@ -64,7 +66,7 @@ zak_form_element_validator_class_init (ZakFormElementValidatorClass *class) g_param_spec_string ("message", "Message", "Message", - "Invalid value", + _("Invalid value"), G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); } diff --git a/src/formvalidatorcomparedate.c b/src/formvalidatorcomparedate.c index 309f147..8c7be45 100644 --- a/src/formvalidatorcomparedate.c +++ b/src/formvalidatorcomparedate.c @@ -20,6 +20,8 @@ #include #endif +#include + #include #include "commons.h" @@ -62,12 +64,7 @@ enum GREATER_EQUAL }; -static gchar *msgs[] = {"lesser than", - "lesser or equal to", - "equal to", - "different from", - "greater than", - "greater or equal to"}; +static gchar *msgs[6]; typedef struct _ZakFormValidatorCompareDatePrivate ZakFormValidatorCompareDatePrivate; struct _ZakFormValidatorCompareDatePrivate @@ -106,6 +103,13 @@ zak_form_validator_compare_date_init (ZakFormValidatorCompareDate *validator) priv->v1 = NULL; priv->v2 = NULL; + + msgs[0] = _("lesser than"); + msgs[1] = _("lesser or equal to"); + msgs[2] = _("equal to"); + msgs[3] = _("different from"); + msgs[4] = _("greater than"); + msgs[5] = _("greater or equal to"); } /** @@ -311,7 +315,7 @@ zak_form_validator_compare_date_validate (ZakFormValidator *validator, if (!ret) { - msg = g_strdup_printf ("«%s» must be %s «%s»", + msg = g_strdup_printf (_("«%s» must be %s «%s»"), zak_form_element_get_long_name (priv->v1), msgs[priv->type], zak_form_element_get_long_name (priv->v2)); -- 2.49.0