From 72e3d4c55a6569d966059f762824c38d06055871 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 29 Oct 2016 23:24:31 +0200 Subject: New upstream version 0.25.0 --- plugins/shotwell-publishing-extras/TumblrPublishing.vala | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'plugins/shotwell-publishing-extras/TumblrPublishing.vala') diff --git a/plugins/shotwell-publishing-extras/TumblrPublishing.vala b/plugins/shotwell-publishing-extras/TumblrPublishing.vala index 3f5a2ed..bc6fcec 100644 --- a/plugins/shotwell-publishing-extras/TumblrPublishing.vala +++ b/plugins/shotwell-publishing-extras/TumblrPublishing.vala @@ -102,12 +102,12 @@ public class TumblrPublisher : Spit.Publishing.Publisher, GLib.Object { private SizeEntry[] create_sizes() { SizeEntry[] result = new SizeEntry[0]; - result += new SizeEntry(_("500 x 375 pixels"), 500); - result += new SizeEntry(_("1024 x 768 pixels"), 1024); - result += new SizeEntry(_("1280 x 853 pixels"), 1280); + result += new SizeEntry(_("500 × 375 pixels"), 500); + result += new SizeEntry(_("1024 × 768 pixels"), 1024); + result += new SizeEntry(_("1280 × 853 pixels"), 1280); //Larger images make no sense for Tumblr -// result += new SizeEntry(_("2048 x 1536 pixels"), 2048); -// result += new SizeEntry(_("4096 x 3072 pixels"), 4096); +// result += new SizeEntry(_("2048 × 1536 pixels"), 2048); +// result += new SizeEntry(_("4096 × 3072 pixels"), 4096); // result += new SizeEntry(_("Original size"), ORIGINAL_SIZE); return result; @@ -308,7 +308,7 @@ public class TumblrPublisher : Spit.Publishing.Publisher, GLib.Object { if (split_pair.length != 2) host.post_error(new Spit.Publishing.PublishingError.MALFORMED_RESPONSE( - _("'%s' isn't a valid response to an OAuth authentication request"))); + _("“%s” isn’t a valid response to an OAuth authentication request"))); if (split_pair[0] == "oauth_token") oauth_token = split_pair[1]; @@ -318,7 +318,7 @@ public class TumblrPublisher : Spit.Publishing.Publisher, GLib.Object { if (oauth_token == null || oauth_token_secret == null) host.post_error(new Spit.Publishing.PublishingError.MALFORMED_RESPONSE( - _("'%s' isn't a valid response to an OAuth authentication request"))); + _("“%s” isn’t a valid response to an OAuth authentication request"))); session.set_access_phase_credentials(oauth_token, oauth_token_secret); } @@ -556,7 +556,7 @@ public class TumblrPublisher : Spit.Publishing.Publisher, GLib.Object { return; if (was_started) - error(_("TumblrPublisher: start( ): can't start; this publisher is not restartable.")); + error(_("TumblrPublisher: start( ): can’t start; this publisher is not restartable.")); debug("TumblrPublisher: starting interaction."); -- cgit v1.2.3