msgstr ""
"Project-Id-Version: PSPP 0.7.5\n"
"Report-Msgid-Bugs-To: pspp-dev@gnu.org\n"
-"POT-Creation-Date: 2010-10-03 13:10+0200\n"
+"POT-Creation-Date: 2010-10-03 14:00+0200\n"
"PO-Revision-Date: 2010-09-15 08:17+0900\n"
"Last-Translator: John Darrington <john@darrington.wattle.id.au>\n"
"Language-Team: John Darrington <john@darrington.wattle.id.au>\n"
"Compression bias is not the usual value of 100, or system file uses \n"
"unrecognised floating-point format."
+#: src/data/sys-file-reader.c:598
+#, c-format
+msgid "Variable name begins with invalid character `%c'."
+msgstr "Variable name begins with invalid character ‘%c’."
+
#: src/data/sys-file-reader.c:601
#, c-format
msgid "Invalid variable name `%s'."
msgid "Custom"
msgstr ""
+#: src/ui/gui/psppire-var-store.c:755
+#, c-format
+msgid "{%s,`%s'}_"
+msgstr "{%s,‘%s’}_"
+
#: src/ui/gui/psppire-window.c:97
#, c-format
msgid "%s %s PSPPIRE %s"
msgid "Confidence Interval: %2d %%"
msgstr ""
+#: src/ui/gui/val-labs-dialog.c:515
+#, c-format
+msgid "%s = `%s'"
+msgstr "%s = ‘%s’"
+
#: src/ui/gui/variable-info-dialog.c:77
#, c-format
msgid "Label: %s\n"
/* Check variable name. */
if (name[0] == '$' || name[0] == '#')
- sys_error (r, "Variable name begins with invalid character `%c'.",
+ sys_error (r, _("Variable name begins with invalid character `%c'."),
name[0]);
if (!var_is_plausible_name (name, false))
sys_error (r, _("Invalid variable name `%s'."), name);
{
gchar *const vstr = value_to_text (vl->value, dict, *write_spec);
- return g_strdup_printf ( "{%s,`%s'}_", vstr, val_lab_get_label (vl));
+ return g_strdup_printf (_("{%s,`%s'}_"), vstr, val_lab_get_label (vl));
}
}
}
#include "psppire-var-store.h"
#include <libpspp/i18n.h>
+#include <gettext.h>
+#define _(msgid) gettext (msgid)
+#define N_(msgid) msgid
+
struct val_labs_dialog
{
GtkWidget *window;
value_to_text (vl->value, dialog->dict,
*var_get_write_format (dialog->pv));
- gchar *const text = g_strdup_printf ("%s = `%s'",
+ gchar *const text = g_strdup_printf (_("%s = `%s'"),
vstr, val_lab_get_label (vl));
gtk_list_store_append (list_store, &iter);