New Upstream Snapshot - nautilus-admin

Ready changes

Summary

Merged new upstream version: 1.1.9+git20220514.2.b4cb69f (was: 1.1.9+git20220514.1.b4cb69f).

Resulting package

Built on 2022-12-16T18:00 (took 3m18s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots nautilus-admin

Lintian Result

Diff

diff --git a/AUTHORS b/AUTHORS
index 9a4c1c6..455a5d6 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,10 +1,10 @@
-Bruno Nova <brunomb.nova@gmail.com>
+Bruno Nova
 frmdstryr <frmdstryr@gmail.com>
 
 Translators:
 Abdelkarim Guettaf <gkraim@gmail.com>
 Boyuan Yang <073plan@gmail.com>
-Bruno Nova <brunomb.nova@gmail.com>
+Bruno Nova
 David López <david.lopez@upct.es>
 Dušan Kazik <prescott66@gmail.com>
 Jeremy Bicha <jbicha@ubuntu.com>
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9a64829..c3cd22b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,8 +11,13 @@ configure_file(extension/nautilus-admin.py
                extension/nautilus-admin.py)
 
 # Update and compile the translations
-file(GLOB PO_FILES "po/*.po")
-gettext_create_translations(po/nautilus-admin.pot ALL ${PO_FILES})
+file(GLOB TRANSLATION_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "po/*")
+foreach(trans_file ${TRANSLATION_FILES})
+    configure_file(${trans_file} ${trans_file} COPYONLY)
+endforeach()
+file(GLOB PO_FILES "${CMAKE_CURRENT_BINARY_DIR}/po/*.po")
+gettext_create_translations("${CMAKE_CURRENT_BINARY_DIR}/po/nautilus-admin.pot"
+                            ALL ${PO_FILES})
 
 # Install target
 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/extension/nautilus-admin.py"
diff --git a/debian/changelog b/debian/changelog
index b81a3f9..463be6e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+nautilus-admin (1.1.9+git20220514.2.b4cb69f-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+  * Drop patch out-of-place-build.patch, present upstream.
+  * Drop patch update-german-translation.patch, present upstream.
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Fri, 16 Dec 2022 17:58:05 -0000
+
 nautilus-admin (1.1.9-3.3) unstable; urgency=high
 
   * Non-maintainer upload
diff --git a/debian/patches/compatibility-with-nautilus-43.patch b/debian/patches/compatibility-with-nautilus-43.patch
index 24272cc..306d186 100644
--- a/debian/patches/compatibility-with-nautilus-43.patch
+++ b/debian/patches/compatibility-with-nautilus-43.patch
@@ -6,10 +6,10 @@ Subject: compatibility with nautilus 43
  extension/nautilus-admin.py | 10 ++++------
  1 file changed, 4 insertions(+), 6 deletions(-)
 
-diff --git a/extension/nautilus-admin.py b/extension/nautilus-admin.py
-index 4719bbc..2ca77a9 100644
---- a/extension/nautilus-admin.py
-+++ b/extension/nautilus-admin.py
+Index: nautilus-admin.git/extension/nautilus-admin.py
+===================================================================
+--- nautilus-admin.git.orig/extension/nautilus-admin.py
++++ nautilus-admin.git/extension/nautilus-admin.py
 @@ -18,8 +18,6 @@
  import os, subprocess
  
@@ -19,7 +19,7 @@ index 4719bbc..2ca77a9 100644
  
  from gi.repository import Nautilus, GObject
  from gettext import gettext, bindtextdomain, textdomain
-@@ -40,9 +38,10 @@ class NautilusAdmin(Nautilus.MenuProvider, GObject.GObject):
+@@ -40,9 +38,10 @@ class NautilusAdmin(Nautilus.MenuProvide
  	def __init__(self):
  		pass
  
@@ -31,7 +31,7 @@ index 4719bbc..2ca77a9 100644
  		# Don't show when already running as root, or when more than 1 file is selected
  		if os.geteuid() == ROOT_UID or len(files) != 1:
  			return
-@@ -51,7 +50,6 @@ class NautilusAdmin(Nautilus.MenuProvider, GObject.GObject):
+@@ -51,7 +50,6 @@ class NautilusAdmin(Nautilus.MenuProvide
  		# Add the menu items
  		items = []
  		self._setup_gettext();
@@ -39,7 +39,7 @@ index 4719bbc..2ca77a9 100644
  		if file.get_uri_scheme() == "file": # must be a local file/directory
  			if file.is_directory():
  				if os.path.exists(NAUTILUS_PATH):
-@@ -62,9 +60,10 @@ class NautilusAdmin(Nautilus.MenuProvider, GObject.GObject):
+@@ -62,9 +60,10 @@ class NautilusAdmin(Nautilus.MenuProvide
  
  		return items
  
@@ -51,7 +51,7 @@ index 4719bbc..2ca77a9 100644
  		# Don't show when already running as root
  		if os.geteuid() == ROOT_UID:
  			return
-@@ -72,7 +71,6 @@ class NautilusAdmin(Nautilus.MenuProvider, GObject.GObject):
+@@ -72,7 +71,6 @@ class NautilusAdmin(Nautilus.MenuProvide
  		# Add the menu items
  		items = []
  		self._setup_gettext();
diff --git a/debian/patches/new-python-compat.patch b/debian/patches/new-python-compat.patch
index d10b3d3..201ead7 100644
--- a/debian/patches/new-python-compat.patch
+++ b/debian/patches/new-python-compat.patch
@@ -7,11 +7,11 @@ https://github.com/TomaszGasior/mushrooms-rpms/issues/41
  extension/nautilus-admin.py | 8 +++++++-
  1 file changed, 7 insertions(+), 1 deletion(-)
 
-diff --git a/extension/nautilus-admin.py b/extension/nautilus-admin.py
-index 683a484..4719bbc 100644
---- a/extension/nautilus-admin.py
-+++ b/extension/nautilus-admin.py
-@@ -22,7 +22,13 @@
+Index: nautilus-admin.git/extension/nautilus-admin.py
+===================================================================
+--- nautilus-admin.git.orig/extension/nautilus-admin.py
++++ nautilus-admin.git/extension/nautilus-admin.py
+@@ -22,7 +22,13 @@ require_version('Gtk', '3.0')
  require_version('Nautilus', '3.0')
  
  from gi.repository import Nautilus, GObject
@@ -26,4 +26,3 @@ index 683a484..4719bbc 100644
  
  ROOT_UID = 0
  NAUTILUS_PATH="@NAUTILUS_PATH@"
-
diff --git a/debian/patches/out-of-place-build.patch b/debian/patches/out-of-place-build.patch
deleted file mode 100644
index 36fae8c..0000000
--- a/debian/patches/out-of-place-build.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From: Carlos Maddela <e7appew@gmail.com>
-Date: Tue, 12 Feb 2019 12:11:51 +1100
-Subject: Allow translations to be built out-of-place.
-
-Description: Allow translations to be built out-of-place.
-Author: Carlos Maddela <e7appew@gmail.com>
-Origin: vendor
-Forwarded: https://github.com/brunonova/nautilus-admin/pull/52
-Last-Update: 2019-02-12
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
----
- CMakeLists.txt | 9 +++++++--
- 1 file changed, 7 insertions(+), 2 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 9a64829..c3cd22b 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -11,8 +11,13 @@ configure_file(extension/nautilus-admin.py
-                extension/nautilus-admin.py)
- 
- # Update and compile the translations
--file(GLOB PO_FILES "po/*.po")
--gettext_create_translations(po/nautilus-admin.pot ALL ${PO_FILES})
-+file(GLOB TRANSLATION_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "po/*")
-+foreach(trans_file ${TRANSLATION_FILES})
-+    configure_file(${trans_file} ${trans_file} COPYONLY)
-+endforeach()
-+file(GLOB PO_FILES "${CMAKE_CURRENT_BINARY_DIR}/po/*.po")
-+gettext_create_translations("${CMAKE_CURRENT_BINARY_DIR}/po/nautilus-admin.pot"
-+                            ALL ${PO_FILES})
- 
- # Install target
- install(FILES "${CMAKE_CURRENT_BINARY_DIR}/extension/nautilus-admin.py"
diff --git a/debian/patches/series b/debian/patches/series
index b11c3b9..4d730b9 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,2 @@
-out-of-place-build.patch
-update-german-translation.patch
 new-python-compat.patch
 compatibility-with-nautilus-43.patch
diff --git a/debian/patches/update-german-translation.patch b/debian/patches/update-german-translation.patch
deleted file mode 100644
index 5bd716e..0000000
--- a/debian/patches/update-german-translation.patch
+++ /dev/null
@@ -1,93 +0,0 @@
-From: Tobias Bannert <to-ba@users.noreply.github.com>
-Date: Mon, 5 Aug 2019 16:55:58 +0200
-Subject: update german translation
-
-Description: update german translation
-  updated and corrected german translation
-Author: Tobias Bannert <to-ba@users.noreply.github.com>
-Origin: upstream, https://github.com/brunonova/nautilus-admin/commits/fdf57d1632c020a02cbd2861b815a357be28533b
-Last-Update: 2019-11-04
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
----
- po/de.po | 36 ++++++++++++++++++++----------------
- 1 file changed, 20 insertions(+), 16 deletions(-)
-
-diff --git a/po/de.po b/po/de.po
-index 1b22517..3a7abae 100644
---- a/po/de.po
-+++ b/po/de.po
-@@ -8,43 +8,43 @@ msgstr ""
- "Project-Id-Version: nautilus-admin 0.2.0\n"
- "Report-Msgid-Bugs-To: https://github.com/brunonova/nautilus-admin/issues\n"
- "POT-Creation-Date: 2016-06-22 22:47+0100\n"
--"PO-Revision-Date: 2016-09-25 15:51+0200\n"
--"Last-Translator: Rainer Peichl <peichl.rainer@gmail.com>\n"
-+"PO-Revision-Date: 2019-08-05 16:54+0200\n"
-+"Last-Translator: Tobias Bannert <tobannert@gmail.com>\n"
- "Language-Team: \n"
- "Language: de_DE\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
--"X-Generator: Poedit 1.8.9\n"
-+"X-Generator: Poedit 2.2.3\n"
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
- 
- #: extension/nautilus-admin.py:122
- msgid "CAUTION!"
--msgstr "WARNUNG!"
-+msgstr "ACHTUNG!"
- 
- #: extension/nautilus-admin.py:104
- msgid "Edit as A_dministrator"
--msgstr "Als A_dministrator bearbeiten"
-+msgstr "Als _Systemverwalter bearbeiten"
- 
- #: extension/nautilus-admin.py:88
- msgid "Open as A_dministrator"
--msgstr "Als A_dministrator öffnen"
-+msgstr "Als _Systemverwalter öffnen"
- 
- #: extension/nautilus-admin.py:105
- msgid "Open this file in the text editor with root privileges"
--msgstr "Öffene diese Datei im Texteditor mit Root-Rechten"
-+msgstr "Diese Datei in der Textverarbeitung als Systemverwalter öffnen"
- 
- #: extension/nautilus-admin.py:89
- msgid "Open this folder with root privileges"
--msgstr "Öffne diesen Ordner mit Root-Rechten"
-+msgstr "Diesen Ordner als Systemverwalter öffnen"
- 
- #: extension/nautilus-admin.py:96
- msgid "Run as A_dministrator"
--msgstr "Als A_dministrator starten"
-+msgstr "Als _Systemverwalter starten"
- 
- #: extension/nautilus-admin.py:97
- msgid "Run this file with root privileges"
--msgstr "Diese Datei mit Root-Rechten ausführen"
-+msgstr "Diese Datei als Systemverwalter starten"
- 
- #: extension/nautilus-admin.py:123
- msgid ""
-@@ -57,9 +57,13 @@ msgid ""
- "Administrator privileges!\n"
- "Proceed only if you know what you are doing and understand the risks."
- msgstr ""
--"Das Ausführen des Dateimanagers oder des Texteditors mit "
--"Administratorrechten <b> ist gefährlich </b>! <b>Sie können Ihr System "
--"leicht zerstören, wenn Sie nicht vorsichtig sind! </b>\n"
--"<b>Überlegen Sie zweimal </b>, bevor sie aus dem Internet heruntergeladene "
--"Dateien ausführen die nicht von vertrauenswürdigen Seiten stammen.\n"
--"Fahren Sie nur fort wenn Sie wissen was Sie tun und die Risiken kennen."
-+"Das Ausführen der Dateiverwaltung oder der Textbearbeitung als "
-+"Systemverwalter <b>ist gefährlich</b>! <b>Sie können Ihr System leicht "
-+"zerstören, wenn Sie nicht vorsichtig sind!</b>\n"
-+"<b>Überlegen Sie zweimal</b>, bevor Sie aus dem Internet heruntergeladene "
-+"Dateien ausführen, die nicht von vertrauenswürdigen Seiten stammen. <b>Sie "
-+"können Schadprogramme enthalten</b>, welche zu <b>unwiderruflichen Schäden "
-+"an Ihrem System</b> führen können, wenn sie Systemverwaltungsrechte "
-+"erhalten!\n"
-+"\n"
-+"Fahren Sie nur fort, wenn Sie wissen was Sie tun und die Risiken kennen."
diff --git a/extension/nautilus-admin.py b/extension/nautilus-admin.py
index 683a484..dc7b572 100644
--- a/extension/nautilus-admin.py
+++ b/extension/nautilus-admin.py
@@ -1,5 +1,5 @@
 # Nautilus Admin - Extension for Nautilus to do administrative operations
-# Copyright (C) 2015-2017 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015-2017 Bruno Nova
 #               2016 frmdstryr <frmdstryr@gmail.com>
 #
 # This program is free software: you can redistribute it and/or modify
diff --git a/generate-pot-file.sh b/generate-pot-file.sh
index 901a6a2..346aaa3 100755
--- a/generate-pot-file.sh
+++ b/generate-pot-file.sh
@@ -5,7 +5,7 @@ DIR="$(dirname "$FILEPATH")"
 cd "$DIR"
 xgettext --package-name=nautilus-admin \
          --package-version=1.1.9 \
-         --copyright-holder='Bruno Nova <brunomb.nova@gmail.com>' \
+         --copyright-holder='Bruno Nova' \
          --msgid-bugs-address='https://github.com/brunonova/nautilus-admin/issues' \
          -cTRANSLATORS \
          -s -o "po/nautilus-admin.pot" \
diff --git a/nautilus-admin.appdata.xml b/nautilus-admin.appdata.xml
index 835b554..f918327 100644
--- a/nautilus-admin.appdata.xml
+++ b/nautilus-admin.appdata.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!-- Copyright (C) 2016 Bruno Nova <brunomb.nova@gmail.com> -->
+<!-- Copyright (C) 2016 Bruno Nova -->
 <component type="addon">
     <id>nautilus-admin</id>
     <extends>org.gnome.Nautilus.desktop</extends>
@@ -43,5 +43,4 @@
     <url type="homepage">http://brunonova.github.io/nautilus-admin/</url>
     <url type="bugtracker">http://brunonova.github.io/nautilus-admin/issues/</url>
     <developer_name>Bruno Nova</developer_name>
-    <update_contact>brunomb.nova@gmail.com</update_contact>
 </component>
diff --git a/po/ar.po b/po/ar.po
index bdc7eaf..15aa853 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,5 +1,5 @@
 # Arabic translations for nautilus-admin package.
-# Copyright (C) 2015 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Abdelkarim Guettaf <gkraim@gmail.com>, 2015.
 #
diff --git a/po/be.po b/po/be.po
index 0da1ca3..e47a4de 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1,5 +1,5 @@
 # SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) YEAR Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
diff --git a/po/cs.po b/po/cs.po
index afb3fcd..878df4e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,5 +1,5 @@
 # Czech translations for nautilus-admin package.
-# Copyright (C) 2015-2018 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015-2018 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Pavel Rehak <pavel-rehak@email.cz>, 2018.
 #
diff --git a/po/de.po b/po/de.po
index 1b22517..6cc071d 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,5 +1,5 @@
 # German translations for nautilus-admin package.
-# Copyright (C) 2015-2016 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015-2016 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Rainer Peichl <peichl.rainer@gmail.com>, 2016.
 #
@@ -8,43 +8,43 @@ msgstr ""
 "Project-Id-Version: nautilus-admin 0.2.0\n"
 "Report-Msgid-Bugs-To: https://github.com/brunonova/nautilus-admin/issues\n"
 "POT-Creation-Date: 2016-06-22 22:47+0100\n"
-"PO-Revision-Date: 2016-09-25 15:51+0200\n"
-"Last-Translator: Rainer Peichl <peichl.rainer@gmail.com>\n"
+"PO-Revision-Date: 2019-08-05 16:54+0200\n"
+"Last-Translator: Tobias Bannert <tobannert@gmail.com>\n"
 "Language-Team: \n"
 "Language: de_DE\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.8.9\n"
+"X-Generator: Poedit 2.2.3\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: extension/nautilus-admin.py:122
 msgid "CAUTION!"
-msgstr "WARNUNG!"
+msgstr "ACHTUNG!"
 
 #: extension/nautilus-admin.py:104
 msgid "Edit as A_dministrator"
-msgstr "Als A_dministrator bearbeiten"
+msgstr "Als _Systemverwalter bearbeiten"
 
 #: extension/nautilus-admin.py:88
 msgid "Open as A_dministrator"
-msgstr "Als A_dministrator öffnen"
+msgstr "Als _Systemverwalter öffnen"
 
 #: extension/nautilus-admin.py:105
 msgid "Open this file in the text editor with root privileges"
-msgstr "Öffene diese Datei im Texteditor mit Root-Rechten"
+msgstr "Diese Datei in der Textverarbeitung als Systemverwalter öffnen"
 
 #: extension/nautilus-admin.py:89
 msgid "Open this folder with root privileges"
-msgstr "Öffne diesen Ordner mit Root-Rechten"
+msgstr "Diesen Ordner als Systemverwalter öffnen"
 
 #: extension/nautilus-admin.py:96
 msgid "Run as A_dministrator"
-msgstr "Als A_dministrator starten"
+msgstr "Als _Systemverwalter starten"
 
 #: extension/nautilus-admin.py:97
 msgid "Run this file with root privileges"
-msgstr "Diese Datei mit Root-Rechten ausführen"
+msgstr "Diese Datei als Systemverwalter starten"
 
 #: extension/nautilus-admin.py:123
 msgid ""
@@ -57,9 +57,13 @@ msgid ""
 "Administrator privileges!\n"
 "Proceed only if you know what you are doing and understand the risks."
 msgstr ""
-"Das Ausführen des Dateimanagers oder des Texteditors mit "
-"Administratorrechten <b> ist gefährlich </b>! <b>Sie können Ihr System "
-"leicht zerstören, wenn Sie nicht vorsichtig sind! </b>\n"
-"<b>Überlegen Sie zweimal </b>, bevor sie aus dem Internet heruntergeladene "
-"Dateien ausführen die nicht von vertrauenswürdigen Seiten stammen.\n"
-"Fahren Sie nur fort wenn Sie wissen was Sie tun und die Risiken kennen."
+"Das Ausführen der Dateiverwaltung oder der Textbearbeitung als "
+"Systemverwalter <b>ist gefährlich</b>! <b>Sie können Ihr System leicht "
+"zerstören, wenn Sie nicht vorsichtig sind!</b>\n"
+"<b>Überlegen Sie zweimal</b>, bevor Sie aus dem Internet heruntergeladene "
+"Dateien ausführen, die nicht von vertrauenswürdigen Seiten stammen. <b>Sie "
+"können Schadprogramme enthalten</b>, welche zu <b>unwiderruflichen Schäden "
+"an Ihrem System</b> führen können, wenn sie Systemverwaltungsrechte "
+"erhalten!\n"
+"\n"
+"Fahren Sie nur fort, wenn Sie wissen was Sie tun und die Risiken kennen."
diff --git a/po/es.po b/po/es.po
index 7aa3ec6..6a8e7bb 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,5 +1,5 @@
 # Spanish translation for nautilus-admin package
-# Copyright (C) 2016 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2016 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # David López <david.lopez@upct.es>, 2016.
 #
diff --git a/po/fr.po b/po/fr.po
index 60a3780..f2f9fbf 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,5 +1,5 @@
 # French translations for nautilus-admin package.
-# Copyright (C) 2016 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2016 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Loïc Escales <L0L022@openmailbox.org>, 2016.
 #
diff --git a/po/it.po b/po/it.po
index 6403c0f..77134da 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,5 +1,5 @@
 # Italian translations for nautilus-admin package.
-# Copyright (C) 2015 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Stefano Capitani <stefano@manjaro.org>, 2016.
 #
@@ -63,5 +63,5 @@ msgstr ""
 "<b>Rifletti</b> prima di eseguire, specialmente prima di lanciare eseguibili non "
 "verificati e scaricati da Internet. <b>Potrebbero contenere malware</b>, "
 "che potrebbero <b>provocare danni irreversibili al sistema</b> se lanciati con "
-"privilegi di Amministratore!\n" 
+"privilegi di Amministratore!\n"
 "Continuare solamente se tu sai cosa stai facendo e conosci i rischi. "
diff --git a/po/lt.po b/po/lt.po
index 7640270..aa6b98c 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1,5 +1,5 @@
 # Lithuanian translation of nautilus-admin.
-# Copyright (C) 2015-2016 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015-2016 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Copyright (C) Mantas Kriaučiūnas <mantas@akl.lt>, 2016.
 #
diff --git a/po/nautilus-admin.pot b/po/nautilus-admin.pot
index 300a151..e1af028 100644
--- a/po/nautilus-admin.pot
+++ b/po/nautilus-admin.pot
@@ -1,5 +1,5 @@
 # SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) YEAR Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
diff --git a/po/pl.po b/po/pl.po
index 37b665b..7e4ffc9 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,5 +1,5 @@
 # Polish translation for nautilus-admin package
-# Copyright (C) 2016 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2016 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Nolt <nolt@wizzi.pl>, 2016.
 # MartinPL <martinplr@gmail.com>, 2017.
diff --git a/po/pt.po b/po/pt.po
index f3e1187..84f9d41 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 # Portuguese translations for nautilus-admin package.
-# Copyright (C) 2015-2017 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015-2017 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
-# Bruno Nova <brunomb.nova@gmail.com>, 2015-2017.
+# Bruno Nova, 2015-2017.
 #
 msgid ""
 msgstr ""
@@ -9,7 +9,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: https://github.com/brunonova/nautilus-admin/issues\n"
 "POT-Creation-Date: 2017-09-11 20:53+0100\n"
 "PO-Revision-Date: 2017-09-11 20:54+0100\n"
-"Last-Translator: Bruno Nova <brunomb.nova@gmail.com>\n"
+"Last-Translator: Bruno Nova\n"
 "Language-Team: \n"
 "Language: pt\n"
 "MIME-Version: 1.0\n"
diff --git a/po/ru.po b/po/ru.po
index c5e794e..cd613b6 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,5 +1,5 @@
 # Russian translations for nautilus-admin package.
-# Copyright (C) 2015 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Maksim Krapiuka <metalomaniax@gmail.com>, 2016.
 #
diff --git a/po/sk.po b/po/sk.po
index 977e782..6927935 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,5 +1,5 @@
 # Slovakian translations for nautilus-admin package.
-# Copyright (C) 2016 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2016 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Dušan Kazik <prescott66@gmail.com>, 2016, 2017.
 #
diff --git a/po/tr.po b/po/tr.po
index 35bb566..958c585 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,5 +1,5 @@
 # Türkçe çeviri nautilus-admin paket
-# Copyright (C) 2016 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2016 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Serdar Sağlam <teknomobil@yandex.com>, 2018.
 #
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 31d87bd..409e053 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1,5 +1,5 @@
 # Simplified Chinese translations for nautilus-admin package.
-# Copyright (C) 2015 Bruno Nova <brunomb.nova@gmail.com>
+# Copyright (C) 2015 Bruno Nova
 # This file is distributed under the same license as the nautilus-admin package.
 # Boyuan Yang <073plan@gmail.com>, 2016.
 #

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details