--- /dev/null
+# libzakform italian translation
+# Copyright (C) 2015-2016 Andrea Zagli
+# This file is distributed under the same license as the libzakform package.
+# Andrea Zagli <azagli@libero.it>, 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 <azagli@libero.it>\n"
+"Language-Team: Italian <tp@lists.linux.it>\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»"
#include <config.h>
#endif
+#include <glib/gi18n-lib.h>
+
#include <libzakutils/libzakutils.h>
#include "commons.h"
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
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");
}
/**
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));