diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-04-03 13:15:00 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-04-03 13:15:00 +0200 |
commit | bc53b714952ceb0afd02b591403cb2bc0cb1aab9 (patch) | |
tree | 8ff57ed1a1265b2c87f37e3c8fa19876faf80990 /plugins/shotwell-publishing-extras/GalleryConnector.vala | |
parent | d4c476947425c12b1984fedea16f8a8c42a07ba3 (diff) | |
parent | c43dfb815a4951b8248f4f0e98babe4f80204f03 (diff) |
Merge tag 'upstream/0.22.0'
Upstream version 0.22.0
Diffstat (limited to 'plugins/shotwell-publishing-extras/GalleryConnector.vala')
-rw-r--r-- | plugins/shotwell-publishing-extras/GalleryConnector.vala | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/plugins/shotwell-publishing-extras/GalleryConnector.vala b/plugins/shotwell-publishing-extras/GalleryConnector.vala index 682aff0..6eb5a3a 100644 --- a/plugins/shotwell-publishing-extras/GalleryConnector.vala +++ b/plugins/shotwell-publishing-extras/GalleryConnector.vala @@ -1019,9 +1019,10 @@ public class GalleryPublisher : Spit.Publishing.Publisher, GLib.Object { warning("Could not parse UI file! Error: %s.", e.message); host.post_error( new Spit.Publishing.PublishingError.LOCAL_FILE_ERROR( - _("A file required for publishing is " + - "unavailable. Publishing to " + SERVICE_NAME + - " can't continue."))); + _("A file required for publishing is unavailable. Publishing to %s can't continue.") + .printf(SERVICE_NAME) + ) + ); return; } @@ -1771,9 +1772,11 @@ internal class CredentialsPane : Spit.Publishing.DialogPane, GLib.Object { warning("Could not parse UI file! Error: %s.", e.message); host.post_error( new Spit.Publishing.PublishingError.LOCAL_FILE_ERROR( - _("A file required for publishing is " + - "unavailable. Publishing to " + SERVICE_NAME + - " can't continue."))); + _("A file required for publishing is unavailable. Publishing to %s can't continue.") + .printf(SERVICE_NAME) + ) + ); + return; } |