Add plural forms for some translations

https://bugzilla.gnome.org/show_bug.cgi?id=687698
This commit is contained in:
Matthias Clasen 2012-11-09 22:10:10 -05:00
parent 1e598600a1
commit 7fd15ee4ae

View File

@ -668,7 +668,7 @@ get_contents_stdio (const gchar *display_filename,
g_set_error (error,
G_FILE_ERROR,
G_FILE_ERROR_NOMEM,
_("Could not allocate %lu bytes to read file \"%s\""),
g_dngettext (GETTEXT_PACKAGE, "Could not allocate %ld byte to read file \"%s\"", "Could not allocate %lu bytes to read file \"%s\"", (gulong)total_allocated),
(gulong) total_allocated,
display_filename);
@ -756,7 +756,7 @@ get_contents_regfile (const gchar *display_filename,
g_set_error (error,
G_FILE_ERROR,
G_FILE_ERROR_NOMEM,
_("Could not allocate %lu bytes to read file \"%s\""),
g_dngettext (GETTEXT_PACKAGE, "Could not allocate %ld byte to read file \"%s\"", "Could not allocate %lu bytes to read file \"%s\"", (gulong)alloc_size),
(gulong) alloc_size,
display_filename);