[frogr] [i18n] Fix wrong use of plural forms. Again
- From: Mario Sanchez Prada <msanchez src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [frogr] [i18n] Fix wrong use of plural forms. Again
- Date: Fri, 9 Nov 2012 14:45:13 +0000 (UTC)
commit 39e45749d70cd9adf2e8fa4b4a5d60ebb0981155
Author: Mario Sanchez Prada <msanchez gnome org>
Date: Fri Nov 9 15:44:35 2012 +0100
[i18n] Fix wrong use of plural forms. Again
https://bugzilla.gnome.org/show_bug.cgi?id=687741
src/frogr-controller.c | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
---
diff --git a/src/frogr-controller.c b/src/frogr-controller.c
index c32c172..2063dbb 100644
--- a/src/frogr-controller.c
+++ b/src/frogr-controller.c
@@ -285,6 +285,8 @@ _handle_flicksoup_error (FrogrController *self, GError *error, gboolean notify_u
FrogrControllerPrivate *priv = FROGR_CONTROLLER_GET_PRIVATE (self);
void (* error_function) (GtkWindow *, const gchar *) = NULL;
gchar *msg = NULL;
+ gchar *video_quota_msg = NULL;
+ gint n_videos = 0;
error_function = frogr_util_show_error_dialog;
switch (error->code)
@@ -315,9 +317,14 @@ _handle_flicksoup_error (FrogrController *self, GError *error, gboolean notify_u
break;
case FSP_ERROR_UPLOAD_QUOTA_VIDEO_EXCEEDED:
- msg = g_strdup_printf (_("Error uploading video:\nYou can't upload more videos with this account\n"
- "Quota exceeded (limit: %d videos per month)"),
- frogr_account_get_current_videos (priv->account));
+ n_videos = frogr_account_get_current_videos (priv->account);
+ video_quota_msg = g_strdup_printf (ngettext ("Quota exceeded (limit: %d video per month)",
+ "Quota exceeded (limit: %d videos per month)", n_videos),
+ n_videos);
+ msg = g_strdup_printf ("%s\n%s",
+ _("Error uploading video:\nYou can't upload more videos with this account"),
+ video_quota_msg);
+ g_free (video_quota_msg);
break;
case FSP_ERROR_PHOTO_NOT_FOUND:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]