diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/debian/bzr-builder.manifest granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/debian/bzr-builder.manifest --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/debian/bzr-builder.manifest 2015-06-08 18:09:45.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/debian/bzr-builder.manifest 2015-06-24 22:00:46.000000000 +0000 @@ -1,3 +1,3 @@ -# bzr-builder format 0.3 deb-version 0.3.0+r859+pkg81~daily -lp:granite revid:rabbitbot-20150608160330-oc3z4asfymoayhfa +# bzr-builder format 0.3 deb-version 0.3.0+r861+pkg81~daily +lp:granite revid:rabbitbot-20150624202330-1xdapxt5tg7n60bv nest-part packaging lp:~elementary-os/granite/deb-packaging debian debian revid:cody@elementaryos.org-20150525154559-q92nwvs72nkepwiq diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/debian/changelog granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/debian/changelog --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/debian/changelog 2015-06-08 18:09:45.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/debian/changelog 2015-06-24 22:00:47.000000000 +0000 @@ -1,8 +1,8 @@ -granite (0.3.0+r859+pkg81~daily~ubuntu15.04.1) vivid; urgency=low +granite (0.3.0+r861+pkg81~daily~ubuntu15.04.1) vivid; urgency=low * Auto build. - -- Cody Garver Mon, 08 Jun 2015 18:09:45 +0000 + -- Cody Garver Wed, 24 Jun 2015 22:00:47 +0000 granite (0.3.0-2~experimental1) experimental; urgency=low diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/demo/GraniteDemo.vala granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/demo/GraniteDemo.vala --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/demo/GraniteDemo.vala 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/demo/GraniteDemo.vala 2015-06-24 22:00:42.000000000 +0000 @@ -80,6 +80,7 @@ create_modebutton (); create_dynamictab (); create_alert (); + create_storage (); window.add (main_stack); window.set_default_size (800, 550); @@ -115,6 +116,7 @@ welcome.append ("object-inverse", "ModeButton", "This widget is a multiple option modal switch"); welcome.append ("document-open", "DynamicNotebook", "Tab bar widget designed for a variable number of tabs."); welcome.append ("dialog-warning", "AlertView", "A View showing that an action is required to function."); + welcome.append ("drive-harddisk", "Storage", "Small bar indicating the remaining amount of space."); welcome.activated.connect ((index) => { switch (index) { case 0: @@ -137,6 +139,10 @@ home_button.show (); main_stack.set_visible_child_name ("alert"); break; + case 5: + home_button.show (); + main_stack.set_visible_child_name ("storage"); + break; } }); main_stack.add_named (welcome, "welcome"); @@ -228,6 +234,27 @@ alert.action_activated.connect (() => {alert.hide_action ();}); } + private void create_storage () { + var grid = new Gtk.Grid (); + grid.row_spacing = 6; + grid.column_spacing = 12; + var file_root = GLib.File.new_for_path ("/"); + try { + var info = file_root.query_filesystem_info (GLib.FileAttribute.FILESYSTEM_SIZE, null); + var size = info.get_attribute_uint64 (GLib.FileAttribute.FILESYSTEM_SIZE); + var storage = new Granite.Widgets.StorageBar (size); + storage.update_block_size (Granite.Widgets.StorageBar.ItemDescription.AUDIO, size/40); + storage.update_block_size (Granite.Widgets.StorageBar.ItemDescription.VIDEO, size/30); + storage.update_block_size (Granite.Widgets.StorageBar.ItemDescription.APP, size/20); + storage.update_block_size (Granite.Widgets.StorageBar.ItemDescription.PHOTO, size/10); + storage.update_block_size (Granite.Widgets.StorageBar.ItemDescription.OTHER, size/5); + grid.add (storage); + } catch (Error e) { + critical (e.message); + } + main_stack.add_named (grid, "storage"); + } + int i; private void create_dynamictab () { var notebook = new Granite.Widgets.DynamicNotebook (); Binary files /tmp/hAPKfBQeqV/granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/doc/images/StorageBar.png and /tmp/W3dCgVAmq9/granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/doc/images/StorageBar.png differ diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/lib/CMakeLists.txt granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/lib/CMakeLists.txt --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/lib/CMakeLists.txt 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/lib/CMakeLists.txt 2015-06-24 22:00:42.000000000 +0000 @@ -42,6 +42,7 @@ Widgets/LightWindow.vala Widgets/StatusBar.vala Widgets/SidebarPaned.vala + Widgets/StorageBar.vala Widgets/SourceList.vala Widgets/CellRendererExpander.vala Widgets/CellRendererBadge.vala diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/lib/Widgets/StorageBar.vala granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/lib/Widgets/StorageBar.vala --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/lib/Widgets/StorageBar.vala 1970-01-01 00:00:00.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/lib/Widgets/StorageBar.vala 2015-06-24 22:00:42.000000000 +0000 @@ -0,0 +1,314 @@ +/* + * Copyright (C) 2011-2015 Granite Developers (https://launchpad.net/granite) + * + * This program or library is free software; you can redistribute it + * and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + * Authored by: Corentin Noël + */ + +/** + * An horizontal bar showing the remaining amount of space. + * + * {{../../doc/images/StorageBar.png}} + */ +public class Granite.Widgets.StorageBar : Gtk.Box { + public enum ItemDescription { + OTHER, + AUDIO, + VIDEO, + PHOTO, + APP; + + public static string? get_class (ItemDescription description) { + switch (description) { + case ItemDescription.AUDIO: + return "audio"; + case ItemDescription.VIDEO: + return "video"; + case ItemDescription.PHOTO: + return "photo"; + case ItemDescription.APP: + return "app"; + default: + return null; + } + } + + public static string get_name (ItemDescription description) { + switch (description) { + case ItemDescription.AUDIO: + return _("Audio"); + case ItemDescription.VIDEO: + return _("Videos"); + case ItemDescription.PHOTO: + return _("Photos"); + case ItemDescription.APP: + return _("Apps"); + default: + return _("Other"); + } + } + } + + private uint64 _storage = 0; + public uint64 storage { + get { + return _storage; + } + set { + _storage = value; + resize_children (); + update_size_description (); + } + } + + public int inner_margin_sides { + get { + return fillblock_box.margin_start; + } + set { + fillblock_box.margin_end = fillblock_box.margin_start = value; + } + } + + private Gtk.Label description_label; + private GLib.HashTable blocks; + private int index = 0; + private Gtk.Box fillblock_box; + private Gtk.Box legend_box; + private FillBlock free_space; + + /** + * Creates a new StorageBar widget with the given amount of space. + * + * @param storage the total amount of space. + */ + public StorageBar (uint64 storage) { + Object (storage: storage); + } + + construct { + orientation = Gtk.Orientation.VERTICAL; + description_label = new Gtk.Label (null); + description_label.hexpand = true; + description_label.margin_top = 6; + get_style_context ().add_class ("storage-bar"); + blocks = new GLib.HashTable (null, null); + fillblock_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); + fillblock_box.get_style_context ().add_class ("trough"); + fillblock_box.hexpand = true; + inner_margin_sides = 12; + legend_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 12); + legend_box.expand = true; + var legend_center_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); + legend_center_box.set_center_widget (legend_box); + var legend_scrolled = new Gtk.ScrolledWindow (null, null); + legend_scrolled.vscrollbar_policy = Gtk.PolicyType.NEVER; + legend_scrolled.hexpand = true; + legend_scrolled.add (legend_center_box); + var grid = new Gtk.Grid (); + grid.attach (legend_scrolled, 0, 0, 1, 1); + grid.attach (fillblock_box, 0, 1, 1, 1); + grid.attach (description_label, 0, 2, 1, 1); + set_center_widget (grid); + + fillblock_box.size_allocate.connect ((allocation) => { + // lost_size is here because we use truncation so that it is possible for a full device to have a filed bar. + double lost_size = 0; + int current_x = allocation.x; + for (int i = 0; i < blocks.length; i++) { + weak FillBlock block = blocks.get (i); + if (block == null || block.visible == false) + continue; + + var new_allocation = Gtk.Allocation (); + new_allocation.x = current_x; + new_allocation.y = allocation.y; + double width = (((double)allocation.width) * (double) block.size / (double) storage) + lost_size; + lost_size -= GLib.Math.trunc (lost_size); + new_allocation.width = (int) GLib.Math.trunc (width); + new_allocation.height = allocation.height; + block.size_allocate_with_baseline (new_allocation, block.get_allocated_baseline ()); + + lost_size = width - new_allocation.width; + current_x += new_allocation.width; + } + }); + + create_default_blocks (); + } + + private void create_default_blocks () { + var seq = new Sequence (); + seq.append (ItemDescription.OTHER); + seq.append (ItemDescription.AUDIO); + seq.append (ItemDescription.VIDEO); + seq.append (ItemDescription.PHOTO); + seq.append (ItemDescription.APP); + seq.sort ((a, b) => { + if (a == ItemDescription.OTHER) + return 1; + if (b == ItemDescription.OTHER) + return -1; + + return ItemDescription.get_name (a).collate (ItemDescription.get_name (b)); + }); + + seq.foreach ((description) => { + var fill_block = new FillBlock (description, 0); + fillblock_box.add (fill_block); + legend_box.add (fill_block.legend_item); + blocks.set (index, fill_block); + index++; + }); + + free_space = new FillBlock (ItemDescription.OTHER, storage); + free_space.get_style_context ().add_class ("empty-block"); + blocks.set (index, free_space); + fillblock_box.add (free_space); + + update_size_description (); + } + + private void update_size_description () { + uint64 user_size = 0; + foreach (weak FillBlock block in blocks.get_values ()) { + if (block.visible == false || block == free_space) + continue; + user_size += block.size; + } + + uint64 free = storage - user_size; + free_space.size = free; + description_label.label = _("%s free out of %s").printf (GLib.format_size (free), GLib.format_size (storage)); + } + + /** + * Update the specified block with a given amount of space. + * + * @param description the category to update. + * @param size the size of the category or 0 to hide. + */ + public void update_block_size (ItemDescription description, uint64 size) { + foreach (weak FillBlock block in blocks.get_values ()) { + if (block.description == description) { + block.size = size; + update_size_description (); + return; + } + } + } + + internal class FillBlock : FillRound { + private uint64 _size = 0; + public uint64 size { + get { + return _size; + } + set { + _size = value; + if (_size == 0) { + no_show_all = true; + visible = false; + legend_item.no_show_all = true; + legend_item.visible = false; + } else { + no_show_all = false; + visible = true; + legend_item.no_show_all = false; + legend_item.visible = true; + size_label.label = GLib.format_size (_size); + queue_resize (); + } + } + } + + public ItemDescription description { public get; construct set; } + public Gtk.Grid legend_item { public get; private set; } + private Gtk.Label name_label; + private Gtk.Label size_label; + private FillRound legend_fill; + + internal FillBlock (ItemDescription description, uint64 size) { + Object (size: size, description: description); + var clas = ItemDescription.get_class (description); + if (clas != null) { + get_style_context ().add_class (clas); + legend_fill.get_style_context ().add_class (clas); + } + + name_label.label = "%s".printf (GLib.Markup.escape_text (ItemDescription.get_name (description))); + } + + construct { + show_all (); + legend_item = new Gtk.Grid (); + legend_item.column_spacing = 6; + name_label = new Gtk.Label (null); + name_label.halign = Gtk.Align.START; + name_label.use_markup = true; + size_label = new Gtk.Label (null); + size_label.halign = Gtk.Align.START; + legend_fill = new FillRound (); + legend_fill.get_style_context ().add_class ("legend"); + var legend_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); + legend_box.set_center_widget (legend_fill); + legend_item.attach (legend_box, 0, 0, 1, 2); + legend_item.attach (name_label, 1, 0, 1, 1); + legend_item.attach (size_label, 1, 1, 1, 1); + } + } + + internal class FillRound : Gtk.Widget { + internal FillRound () { + + } + + construct { + set_has_window (false); + var style_context = get_style_context (); + style_context.add_class ("fill-block"); + expand = true; + } + + public override bool draw (Cairo.Context cr) { + var width = get_allocated_width (); + var height = get_allocated_height (); + var context = get_style_context (); + context.render_background (cr, 0, 0, width, height); + context.render_frame (cr, 0, 0, width, height); + return true; + } + + public override void get_preferred_width (out int minimum_width, out int natural_width) { + base.get_preferred_width (out minimum_width, out natural_width); + var context = get_style_context (); + var padding = context.get_padding (get_state_flags ()); + minimum_width = int.max ((padding.left + padding.right) * context.get_scale (), minimum_width); + minimum_width = int.max (1, minimum_width); + natural_width = int.max (minimum_width, natural_width); + } + + public override void get_preferred_height (out int minimum_height, out int natural_height) { + base.get_preferred_height (out minimum_height, out natural_height); + var context = get_style_context (); + var padding = context.get_padding (get_state_flags ()); + minimum_height = int.max ((padding.top + padding.bottom) * context.get_scale (), minimum_height); + minimum_height = int.max (1, minimum_height); + natural_height = int.max (minimum_height, natural_height); + } + } +} diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/af.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/af.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/af.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/af.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/am.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/am.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/am.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/am.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ar.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ar.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ar.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ar.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/be.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/be.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/be.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/be.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-27 05:21+0000\n" -"X-Generator: Launchpad (build 17514)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/bg.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/bg.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/bg.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/bg.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/bs.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/bs.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/bs.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/bs.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ca.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ca.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ca.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ca.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/cs.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/cs.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/cs.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/cs.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/da.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/da.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/da.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/da.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/de.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/de.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/de.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/de.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/el.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/el.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/el.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/el.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/en_AU.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/en_AU.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/en_AU.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/en_AU.po 2015-06-24 22:00:42.000000000 +0000 @@ -9,13 +9,13 @@ "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-10-29 15:12-0500\n" "PO-Revision-Date: 2014-01-16 07:13+0000\n" -"Last-Translator: David Robert Piper \n" +"Last-Translator: David Robert Piper \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/en_CA.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/en_CA.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/en_CA.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/en_CA.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/en_GB.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/en_GB.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/en_GB.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/en_GB.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/eo.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/eo.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/eo.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/eo.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/es.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/es.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/es.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/es.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/et.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/et.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/et.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/et.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/eu.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/eu.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/eu.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/eu.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fa.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fa.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fa.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fa.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" "Language: \n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fi.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fi.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fi.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fi.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fr_CA.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fr_CA.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fr_CA.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fr_CA.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fr.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fr.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fr.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fr.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fy.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fy.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/fy.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/fy.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/gl.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/gl.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/gl.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/gl.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/he.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/he.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/he.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/he.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/hi.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/hi.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/hi.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/hi.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/hr.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/hr.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/hr.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/hr.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/hu.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/hu.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/hu.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/hu.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/hy.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/hy.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/hy.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/hy.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/id.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/id.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/id.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/id.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/it.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/it.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/it.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/it.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ja.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ja.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ja.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ja.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ko.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ko.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ko.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ko.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/lb.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/lb.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/lb.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/lb.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/lt.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/lt.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/lt.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/lt.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/lv.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/lv.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/lv.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/lv.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ms.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ms.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ms.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ms.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/my.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/my.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/my.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/my.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/nb.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/nb.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/nb.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/nb.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/nl.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/nl.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/nl.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/nl.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//Widgets/ContractorView.vala:105 msgid "Could not contact Contractor. You may need to install it" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/nn.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/nn.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/nn.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/nn.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/pl.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/pl.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/pl.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/pl.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/pt_BR.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/pt_BR.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/pt_BR.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/pt_BR.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/pt.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/pt.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/pt.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/pt.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ro.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ro.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ro.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ro.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/rue.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/rue.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/rue.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/rue.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ru.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ru.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ru.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ru.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sk.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sk.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sk.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sk.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sl.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sl.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sl.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sl.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sma.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sma.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sma.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sma.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sq.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sq.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sq.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sq.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:55+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:48+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sr.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sr.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sr.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sr.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sv.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sv.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/sv.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/sv.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:49+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ta.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ta.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ta.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ta.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/te.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/te.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/te.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/te.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/tr.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/tr.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/tr.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/tr.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-05-19 05:26+0000\n" -"X-Generator: Launchpad (build 17508)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ug.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ug.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/ug.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/ug.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/uk.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/uk.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/uk.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/uk.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/vi.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/vi.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/vi.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/vi.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/zh_CN.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/zh_CN.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/zh_CN.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/zh_CN.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-27 05:14+0000\n" -"X-Generator: Launchpad (build 17430)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:" diff -Nru granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/zh_TW.po granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/zh_TW.po --- granite-0.3.0+r859+pkg81~daily~ubuntu15.04.1/po/zh_TW.po 2015-06-08 18:09:43.000000000 +0000 +++ granite-0.3.0+r861+pkg81~daily~ubuntu15.04.1/po/zh_TW.po 2015-06-24 22:00:42.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-04-05 05:56+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"X-Launchpad-Export-Date: 2015-06-16 10:50+0000\n" +"X-Generator: Launchpad (build 17557)\n" #: /tmp/tmp.nk1L7TnOTp/granite/po/../lib//GtkPatch/AboutDialog.vala:36 msgid "Designed by:"