[shotwell] Plural form for Flickr string: Bug #736633



commit 590db90e4f8922de1db607ec9bc7086a1bd1f9ab
Author: Jim Nelson <jim yorba org>
Date:   Thu Sep 25 14:44:50 2014 -0700

    Plural form for Flickr string: Bug #736633

 plugins/shotwell-publishing/FlickrPublishing.vala |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/plugins/shotwell-publishing/FlickrPublishing.vala 
b/plugins/shotwell-publishing/FlickrPublishing.vala
index dcf7971..cc4749a 100644
--- a/plugins/shotwell-publishing/FlickrPublishing.vala
+++ b/plugins/shotwell-publishing/FlickrPublishing.vala
@@ -1152,7 +1152,10 @@ internal class PublishingOptionsPane : Spit.Publishing.DialogPane, GLib.Object {
 
         string upload_label_text = _("You are logged into Flickr as %s.\n\n").printf(parameters.username);
         if (parameters.user_kind == UserKind.FREE) {
-            upload_label_text += _("Your free Flickr account limits how much data you can upload per 
month.\nThis month, you have %d megabytes remaining in your upload quota.").printf(parameters.quota_free_mb);
+            upload_label_text += ngettext(
+            "Your free Flickr account limits how much data you can upload per month.\nThis month you have %d 
megabyte remaining in your upload quota.",
+            "Your free Flickr account limits how much data you can upload per month.\nThis month you have %d 
megabytes remaining in your upload quota.",
+            parameters.quota_free_mb).printf(parameters.quota_free_mb);
         } else {
             upload_label_text += _("Your Flickr Pro account entitles you to unlimited uploads.");
         }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]