commit 24ca3fb857dddc80aa82570fc51de8fbeda5623f
Author: Michael Catanzaro <mcatanzaro@gnome.org>
Date:   Mon Apr 10 10:03:57 2017 -0500

    Prepare 3.24.1

 NEWS         | 8 ++++++++
 configure.ac | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 90eebac3f35897ec9d61274ef54ac3157c3ae71d
Author: ChangSeok Oh <changseok@gnome.org>
Date:   Mon Apr 10 05:18:25 2017 +0000

    Update Korean translation

 help/ko/ko.po | 33 ++++++++++++++++++++++++++-------
 1 file changed, 26 insertions(+), 7 deletions(-)

commit 1ea57369aaa369b37669bbbae233f6d7cdcde783
Author: Ask Hjorth Larsen <asklarsen@gmail.com>
Date:   Sat Apr 8 16:29:01 2017 +0200

    Updated Danish translation

 po/da.po | 279
 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 137 insertions(+), 142 deletions(-)

commit a98dcca12aa984d5863ec8fa1f9bbd896769bb07
Author: ChangSeok Oh <changseok@gnome.org>
Date:   Sat Apr 8 06:34:08 2017 +0000

    Update Korean translation

 po/ko.po | 97
 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 51 insertions(+), 46 deletions(-)

commit 70b28a70db0aea820f8347f2b7c521f42c304176
Author: Christian Hergert <chergert@redhat.com>
Date:   Thu Apr 6 16:22:00 2017 -0700

    web-extension: fix NULL or empty string check

    We need to compare against the character, not the pointer which
    is done immediately to the left of this comparison.

 embed/web-extension/ephy-web-extension.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0e478618fa89fc5e13f781f49c5f74620e51ddcd
Author: Michael Catanzaro <mcatanzaro@gnome.org>
Date:   Thu Apr 6 11:27:09 2017 -0500

    Attempt to fix -Werror build with libxml 2.9.4

    The prototype of this printf function changed.

    https://bugzilla.gnome.org/show_bug.cgi?id=780398

 lib/ephy-langs.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit df70c57a08bcd633c3378237757ed5845c4d02e3
Author: Charles Monzat <superboa@hotmail.fr>
Date:   Thu Apr 6 08:36:56 2017 +0000

    Update French translation

 po/fr.po | 192
 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 102 insertions(+), 90 deletions(-)

commit 22bdf160770fc05d5ae433657d7e58fdc82c71df
Author: Iulian Radu <iulian.radu67@gmail.com>
Date:   Sun Apr 2 21:22:06 2017 +0300

    add-bookmark-popover: Save bookmarks on both popover show and close

    Due to the fact that a bookmark is added to the manager when the
    popover
    is closed, a press on the bookmark button followed by a press on the
    "Remove
    bookmark" button causes a crash because
    ephy_bookmarks_manager_remove_bookmark()
    tries to find the new bookmark which has not been added yet.

    Revert to the original behaviour where a bookmark is saved immediately
    after pressing the star, but also save the bookmark when the
    popover is
    closed in case the user changed something while the popover was open

    https://bugzilla.gnome.org/show_bug.cgi?id=780851

 src/bookmarks/ephy-add-bookmark-popover.c | 47
 ++++++++++++++-----------------
 1 file changed, 21 insertions(+), 26 deletions(-)

commit 9b668efbb2044174804c61b61743152ad85f8fb2
Author: Rūdolfs Mazurs <rudolfsm@src.gnome.org>
Date:   Sun Apr 2 14:01:38 2017 +0300

    Update Latvian translation

 po/lv.po | 159
 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 78 insertions(+), 81 deletions(-)

commit 4562e884e80ed5af931b09890a38b91392156e9b
Author: Iulian Radu <iulian.radu67@gmail.com>
Date:   Fri Mar 31 19:02:09 2017 +0300

    bookmarks-manager: Change *_add_bookmark() to be (transfer none)

    This should fix the inconsistency between *_add_bookmarks() and
    *_add_bookmark().

    https://bugzilla.gnome.org/show_bug.cgi?id=780564

 src/bookmarks/ephy-add-bookmark-popover.c    |  1 +
 src/bookmarks/ephy-bookmarks-manager.c       |  3 ++-
 src/profile-migrator/ephy-profile-migrator.c |  1 +
 src/sync/ephy-sync-service.c                 | 15 ++++++++-------
 4 files changed, 12 insertions(+), 8 deletions(-)

commit 1d8b2e33fcd343a54bf06b1541e58bba42710ce6
Author: Iulian Radu <iulian.radu67@gmail.com>
Date:   Fri Mar 31 18:33:46 2017 +0300

    bookmarks-import: Display new bookmarks immediately after an import

    This fixes the problem where the browser has to be restarted after
    importing a set of bookmarks from a gvdb file/firefox profile.

    https://bugzilla.gnome.org/show_bug.cgi?id=780564

 src/bookmarks/ephy-bookmarks-manager.c | 4 ++++
 1 file changed, 4 insertions(+)

commit aa05f49d5d987c5358c5f0ebddcb33c815625093
Author: Iulian Radu <iulian.radu67@gmail.com>
Date:   Fri Mar 31 17:43:35 2017 +0300

    bookmarks: Fix problem causing bookmarks to disappear after an import

    This fixes some bugs mainly related to importing bookmarks from
    Firefox.
    In ephy_bookmarks_manager_add_bookmarks(), g_sequence_lookup()
    was called on an unsorted sequence, which caused the function
    to fail and not add bookmarks to the manager. Besides that,
    the compare
    function used for various GSequence operations did not treat the
    case where the time_added was equal for both bookmarks.

    https://bugzilla.gnome.org/show_bug.cgi?id=780564

 src/bookmarks/ephy-bookmark.c          | 22 ++++++++++++--
 src/bookmarks/ephy-bookmark.h          |  4 +--
 src/bookmarks/ephy-bookmarks-manager.c | 52
 +++++++++++++++++++---------------
 3 files changed, 50 insertions(+), 28 deletions(-)

commit c9a5d2d41e2680fc6cff23ec1f91e17b7ddfc1d3
Author: Stas Solovey <whats_up@tut.by>
Date:   Thu Mar 30 13:56:48 2017 +0000

    Update Russian translation

 po/ru.po | 6324
 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 3166 insertions(+), 3158 deletions(-)

commit 62ccddf745cdc9f40c6ba2984201fb2df12dde57
Author: Kukuh Syafaat <syafaatkukuh@gmail.com>
Date:   Wed Mar 29 11:52:14 2017 +0000

    Update Indonesian translation

 po/id.po | 210
 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 108 insertions(+), 102 deletions(-)

commit 7570b3ef58544e7d16caa5e288506e9ba18dbd3b
Author: Gianvito Cavasoli <gianvito@gmx.it>
Date:   Wed Mar 29 09:46:10 2017 +0000

    Update Italian translation

 po/it.po | 203
 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 101 insertions(+), 102 deletions(-)

commit eaa795d37918e3f683ef3500e931570c359c06e0
Author: Balázs Meskó <meskobalazs@fedoraproject.org>
Date:   Tue Mar 28 19:33:57 2017 +0000

    Update Hungarian translation

 po/hu.po | 201
 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 103 insertions(+), 98 deletions(-)

commit b80fdf23883d7fcbf410cf89bde864398a22def1
Author: Michael Catanzaro <mcatanzaro@gnome.org>
Date:   Sat Mar 25 09:41:45 2017 -0500

    Remove quotation marks from about:web page

    If we keep these, then they need to be marked for translation. But we
    don't need to keep them, because they look bad in English. Translators
    can add them around the string if really desired, but I doubt
    it's ever
    desired.

    https://bugzilla.gnome.org/show_bug.cgi?id=780511

 embed/ephy-about-handler.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c88ca4594d481848a3d699cdfea4a251dd492112
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   Sat Mar 25 13:34:39 2017 +0200

    Updated Lithuanian translation

 po/lt.po | 225
 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 110 insertions(+), 115 deletions(-)

commit 11d1e3a6385e90d7bee20f9e190376086cee9b57
Author: Yuras Shumovich <shumovichy@gmail.com>
Date:   Sat Mar 25 11:31:52 2017 +0000

    Update Belarusian translation

 po/be.po | 4524
 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 2803 insertions(+), 1721 deletions(-)

commit 4c872e2a44a2af70b2b8beb616b0d5487e33478d
Author: hanniedu <hannie@ubuntu-nl.org>
Date:   Sat Mar 25 12:28:34 2017 +0100

    Updated Dutch translation Master 3.24

 po/nl.po | 3709
 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 2162 insertions(+), 1547 deletions(-)

commit d20479cbf3dbde22df4d13618e2f54338a8ae343
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Sat Mar 25 10:18:25 2017 +0100

    Updated Norwegian bokmål translation.

 po/nb.po | 713
 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 372 insertions(+), 341 deletions(-)

commit 649eae39010e69f0097b86b0e7a83e73253a58cf
Author: Fran Dieguez <frandieguez@gnome.org>
Date:   Fri Mar 24 23:38:08 2017 +0000

    Update Galician translation

 po/gl.po | 243
 ++++++++++++++++++++++++++-------------------------------------
 1 file changed, 98 insertions(+), 145 deletions(-)

commit bc07c2f3411854bcfafde8e8a9a4c189eaea071c
Author: Gabriel Ivascu <ivascu.gabriel59@gmail.com>
Date:   Thu Mar 23 19:13:49 2017 +0200

    add-bookmark-popover: Save bookmark when popover is closed, not shown

    Fix bug 780443

 src/bookmarks/ephy-add-bookmark-popover.c | 51
 +++++++++++++++++++++++--------
 1 file changed, 38 insertions(+), 13 deletions(-)

commit d13039fb4b9906e1da1bb9496cf3d9fabca400e0
Author: Rafael Fontenelle <rafaelff@gnome.org>
Date:   Fri Mar 24 08:18:47 2017 -0300

    Update Brazilian Portuguese translation for help files

 help/pt_BR/media/epiphany-3-8.png          |  Bin 141865 -> 0 bytes
 help/pt_BR/media/private-browsing-3-22.png |  Bin 0 -> 103312 bytes
 help/pt_BR/media/web-3-22.png              |  Bin 0 -> 271937 bytes
 help/pt_BR/pt_BR.po                        | 1756
 +++++++++++++++++++---------
 4 files changed, 1205 insertions(+), 551 deletions(-)

commit 507fbe608d1aa8f73d61dbcb7d1f015f959e4962
Author: Rafael Fontenelle <rafaelff@gnome.org>
Date:   Fri Mar 24 01:08:41 2017 +0000

    Update Brazilian Portuguese translation

 po/pt_BR.po | 269
 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 137 insertions(+), 132 deletions(-)

commit a003c67704987d57a0fbfd5bb6ce98ecebb8d0a1
Author: Fabio Tomat <f.t.public@gmail.com>
Date:   Thu Mar 23 20:54:50 2017 +0000

    Update Friulian translation

 po/fur.po | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

commit 71568c334958b34102cd327f290af848664e38a7
Author: Michael Catanzaro <mcatanzaro@gnome.org>
Date:   Thu Mar 23 14:32:04 2017 -0500

    Fix untranslated Favorites string in bookmarks popover title

    We translated it in most places, but missed a spot.

    https://bugzilla.gnome.org/show_bug.cgi?id=780460

 src/bookmarks/ephy-bookmarks-popover.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 99827b53989f51e49ab7b60a1280c2b562821262
Author: Michael Catanzaro <mcatanzaro@gnome.org>
Date:   Thu Mar 23 14:10:51 2017 -0500

    Fix untranslated strings in clear data dialog

    https://bugzilla.gnome.org/show_bug.cgi?id=780460

 src/clear-data-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ef1b25f3b09d2bf0d04376612762a64b9a4b00b3
Author: Adrian Perez de Castro <aperez@igalia.com>
Date:   Thu Mar 23 20:02:14 2017 +0200

    Use GtkFileChooserNative for bookmark import/export

    The bookmark import/export file choosers went unnoticed when
    converting the
    other dialogs to GtkFileChooserNative. This patch converts those
    as well.

    Fixes bug #780468

 src/window-commands.c | 78
 +++++++++++++++++++++------------------------------
 1 file changed, 32 insertions(+), 46 deletions(-)

commit 7eb418b1514828954576747075e622b0b7f4d8b4
Author: Marek Černocký <marek@manet.cz>
Date:   Thu Mar 23 19:55:56 2017 +0100

    Updated Czech translation

 po/cs.po | 184
 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 96 insertions(+), 88 deletions(-)

commit 96bbe2cad1ab2d4c4d38732de7851cc50a841606
Author: Anders Jonsson <anders.jonsson@norsjovallen.se>
Date:   Thu Mar 23 18:44:23 2017 +0000

    Update Swedish translation

 po/sv.po | 193
 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 99 insertions(+), 94 deletions(-)

commit d7e70a73614d2644c3ffc93a278876741a1dd65d
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date:   Thu Mar 23 18:21:57 2017 +0000

    Update German translation

 po/de.po | 184
 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 96 insertions(+), 88 deletions(-)

commit 29ac2fcd1fda0953fce671829a21824b27ffb2cd
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Mar 23 18:55:04 2017 +0100

    Update Polish translation

 po/pl.po | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

commit 9ccb19a7e9ede1d165c7f8de5bf41f0e83668d45
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Mar 23 18:24:27 2017 +0100

    Update Polish translation

 po/pl.po | 220
 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 115 insertions(+), 105 deletions(-)

commit 2ad3d633e6809a25ccc14d41f729cff6c2ecc48a
Author: Michael Catanzaro <mcatanzaro@gnome.org>
Date:   Thu Mar 23 12:05:17 2017 -0500

    Mark Bookmark Properties string for translation

    Oops

    https://bugzilla.gnome.org/show_bug.cgi?id=780460

 po/POTFILES.in                    | 1 +
 src/bookmarks/ephy-bookmark-row.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit aa4fb042155170bc306403a616f9cbfdae89ff63
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Mar 23 17:52:59 2017 +0100

    Mark forgotten string for translation

 src/resources/gtk/bookmark-properties-grid.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c83d7605b6bd4878df1a05a22b9ad23fb0f25fc5
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Tue Mar 21 23:19:54 2017 +0200

    Updated Ukrainian translation

 po/uk.po | 2398
 +++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 1366 insertions(+), 1032 deletions(-)

commit 0d5ed344b1a85a0df934ea695131006aa3a18516
Author: Fabio Tomat <f.t.public@gmail.com>
Date:   Mon Mar 20 09:25:10 2017 +0000

    Update Friulian translation

 po/fur.po | 190
 +++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 94 insertions(+), 96 deletions(-)

commit 075d0039799b782dba4abcaeba0dd3d504dd4e91
Author: ChangSeok Oh <changseok@gnome.org>
Date:   Mon Mar 20 08:05:53 2017 +0000

    Update Korean translation

 help/ko/ko.po | 45 ++++++++++++++++++++++++++++-----------------
 1 file changed, 28 insertions(+), 17 deletions(-)