msgstr ""
"Project-Id-Version: 0.1.0\n"
"Report-Msgid-Bugs-To: Andrea Zagli <azagli@libero.it>\n"
-"POT-Creation-Date: 2011-04-04 18:27+0200\n"
-"PO-Revision-Date: 2010-08-01 11:52+0200\n"
+"POT-Creation-Date: 2011-04-30 09:58+0200\n"
+"PO-Revision-Date: 2011-04-30 11:52+0200\n"
"Last-Translator: Andrea Zagli <azagli@libero.it>\n"
"Language-Team: Italian <>\n"
"Language: it\n"
#: ../src/fieldboolean.c:342 ../src/fieldboolean.c:396
#: ../src/fielddatetime.c:574 ../src/fielddatetime.c:630
-#: ../src/fieldfloat.c:394
+#: ../src/fieldfloat.c:458
msgid "GtkFormField hasn't a field name."
msgstr "GtkFormField non ha un nome di campo."
-#: ../src/fielddatetime.c:996
+#: ../src/fielddatetime.c:991
#, c-format
msgid "GtkFormFieldDateTimeType not supported: %d."
msgstr "GtkFormFieldDateTimeType non supportato: %d."
-#: ../src/form.c:241
+#: ../src/form.c:191
+msgid "Modules not supported from this operating system."
+msgstr "Moduli non supportati in questo sistema operativo."
+
+#: ../src/form.c:264
#, c-format
msgid "Error on writing on log file: %s"
msgstr "Errore nella scrittura sul file di registro: %s"
-#: ../src/form.c:275
+#: ../src/form.c:298
#, c-format
msgid "Error on opening log file: %s."
msgstr "Errore durante l'apertura del file di registro: %s."
-#: ../src/form.c:497
+#: ../src/form.c:520
#, c-format
msgid "Error on loading GtkBuilder file: %s\n"
msgstr "Errore durante il caricamento del file GtkBuilder: %s\n"
-#: ../src/form.c:546
+#: ../src/form.c:592
#, c-format
msgid "Unknown type «%s»."
msgstr "Tipo «%s» sconosciuto."
-#: ../src/form.c:576
+#: ../src/form.c:623
#, c-format
msgid "Label «%s» not found."
msgstr "Etichetta «%s» non trovata."
-#: ../src/form.c:779
+#: ../src/form.c:831
#, c-format
msgid "Field of type «%s» not found."
msgstr "Campo di tipo «%s» non trovato."
-#: ../src/form.c:788
+#: ../src/form.c:840
#, c-format
msgid "Widget of type «%s» not found."
msgstr "Widget di tipo «%s» non trovato."
#. TO DO
-#: ../src/form.c:802
+#: ../src/form.c:854
msgid "The file is not a valid gtkform definition file."
msgstr "Il file non è un file di definizione di gtkform valido."
-#: ../src/form.c:1306 ../src/form.c:1591 ../src/form.c:1667 ../src/form.c:1708
+#: ../src/form.c:1358 ../src/form.c:1643 ../src/form.c:1719 ../src/form.c:1760
#, c-format
msgid "Object «%s» not found."
msgstr "Oggetto «%s» non trovato."
-#: ../src/form.c:1416 ../src/form.c:1442
+#: ../src/form.c:1468 ../src/form.c:1494
msgid " is obligatory"
msgstr " è obbligatorio"
-#: ../src/form.c:1416
+#: ../src/form.c:1468
msgid " isn't valid"
msgstr " non è valido"
-#: ../src/form.c:1489
+#: ../src/form.c:1541
#, c-format
msgid "Field «%s» is changed."
msgstr "Il campo «%s» è cambiato."
-#: ../src/form.c:2409
+#: ../src/form.c:2461
#, c-format
msgid "The field «%s»%s."
msgstr "Il campo «%s»%s."
+#: ../src/form.c:2496
+#, c-format
+msgid "Unable to open modules dir: %s."
+msgstr "Impossibile aprire la directory dei moduli: %s."
+
#: ../src/widget.c:183
#, c-format
msgid "Widget «%s» not found."
ret = g_strdup ("");
value = gtk_form_field_float_get_value_stringify (field);
-
if (value != NULL)
{
char *cur = g_strdup (setlocale (LC_NUMERIC, NULL));
gda_locale_changed ();
+
gfloat fval = g_strtod (value, NULL);
setlocale (LC_NUMERIC, "C");
priv->original_value = g_value_get_float (gvalue);
setlocale (LC_NUMERIC, "");
gda_locale_changed ();
- ret = gtk_form_field_float_set_value_stringify (field, g_strdup_printf (gtk_form_field_float_get_str_format (GTK_FORM_FIELD_FLOAT (field)), priv->original_value));
+ ret = gtk_form_field_float_set_value_stringify (field,
+ g_strdup_printf (gtk_form_field_float_get_str_format (GTK_FORM_FIELD_FLOAT (field)),
+ priv->original_value));
return ret;
}
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
- }
+ }
}
static void
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
- }
+ }
}
static gboolean
{
GtkFormFieldFloatPrivate *priv = GTK_FORM_FIELD_FLOAT_GET_PRIVATE (field);
- return g_strdup_printf ("%%0%sf", priv->decimals == 0 ? ".0" : (priv->decimals < 0 ? ".2" : g_strdup_printf (".%d", priv->decimals)));
+ return g_strdup_printf ("%%0%sf", priv->decimals < 0 ? ".2" : g_strdup_printf (".%d", priv->decimals));
}