diff -Nru picard-2.1.0/appveyor.yml picard-2.1.2/appveyor.yml --- picard-2.1.0/appveyor.yml 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/appveyor.yml 2019-01-29 17:32:55.000000000 +0000 @@ -68,8 +68,8 @@ auth_token: secure: bEUedqYteaHx/e64i8Wy16O/o/2WE/O0VNkTAgWCDTYeuiQvkZa3UqyaFaO2k8vk repository: metabrainz/picard - artifact: installer\*.exe + artifact: /.*\.exe/ force_update: true on: APPVEYOR_REPO_TAG: true - PYTHON_VERSION: 3.7.1 + PYTHON_VERSION: 3.7.0 diff -Nru picard-2.1.0/debian/changelog picard-2.1.2/debian/changelog --- picard-2.1.0/debian/changelog 2018-12-22 23:24:26.000000000 +0000 +++ picard-2.1.2/debian/changelog 2019-02-01 17:37:46.000000000 +0000 @@ -1,3 +1,12 @@ +picard (2.1.2-1) unstable; urgency=medium + + * New upstream release. + - Fix use of undefined variable. (Closes: #918946) + * debian/control: Bump Standards-Version. + * debian/: Bump debhelper compat to 12. + + -- Sebastian Ramacher Fri, 01 Feb 2019 18:37:46 +0100 + picard (2.1.0-1) unstable; urgency=medium * New upstream release. diff -Nru picard-2.1.0/debian/compat picard-2.1.2/debian/compat --- picard-2.1.0/debian/compat 2018-12-22 23:18:02.000000000 +0000 +++ picard-2.1.2/debian/compat 2019-02-01 17:36:35.000000000 +0000 @@ -1 +1 @@ -11 +12 diff -Nru picard-2.1.0/debian/control picard-2.1.2/debian/control --- picard-2.1.0/debian/control 2018-12-22 23:24:07.000000000 +0000 +++ picard-2.1.2/debian/control 2019-02-01 17:36:27.000000000 +0000 @@ -3,14 +3,15 @@ Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Sebastian Ramacher -Build-Depends: debhelper (>= 11), +Build-Depends: + debhelper (>= 12), python3-dev, dh-python, gettext, python3-setuptools, python3-pyqt5 (>= 5.8), python3-mutagen (>= 1.37) -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Homepage: http://picard.musicbrainz.org/ Vcs-Browser: https://salsa.debian.org/multimedia-team/picard Vcs-Git: https://salsa.debian.org/multimedia-team/picard.git diff -Nru picard-2.1.0/NEWS.txt picard-2.1.2/NEWS.txt --- picard-2.1.0/NEWS.txt 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/NEWS.txt 2019-01-29 17:32:55.000000000 +0000 @@ -1,3 +1,26 @@ +Version 2.1.2 - 2019-01-29 + +** Bug-fix + * [PICARD-1382] - macOS packaging script ignores all errors + +** Task + * [PICARD-1456] - macOS packaging fails due to PIP bug + + +Version 2.1.1 - 2019-01-29 + +** Bug-fix + * [PICARD-1451] - Redirects of authenticated requests fail with 401 error + * [PICARD-1454] - Crashes when adding action to toolbar in options + + +** Task + * [PICARD-1452] - Appveyor auto-deploy not working + +** Improvement + * [PICARD-1450] - Fix language label for zh_CN and zh_TW + + Version 2.1.0 - 2018-12-20 ** Bug-fix @@ -98,7 +121,7 @@ * [PICARD-1379] - Port astrcmp to new Python C Unicode API * [PICARD-1383] - Use MCN / barcode read from disc to improve DiscId lookup * [PICARD-1393] - Change the application ID - * [PICARD-1416] - Should store ID3 Artists field as TXXX:ARTISTS not TXXX:Artists + * [PICARD-1416] - Should store ID3 Artists field as TXXX:ARTISTS not TXXX:Artists * [PICARD-1417] - Only show plugins with compatible API version * [PICARD-1424] - Translate AppStream data * [PICARD-1425] - Support all movement tags for APE, Vorbis and MP3 diff -Nru picard-2.1.0/org.musicbrainz.Picard.appdata.xml.in picard-2.1.2/org.musicbrainz.Picard.appdata.xml.in --- picard-2.1.0/org.musicbrainz.Picard.appdata.xml.in 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/org.musicbrainz.Picard.appdata.xml.in 2019-01-29 17:32:55.000000000 +0000 @@ -93,6 +93,9 @@ + + + diff -Nru picard-2.1.0/picard/const/languages.py picard-2.1.2/picard/const/languages.py --- picard-2.1.0/picard/const/languages.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/const/languages.py 2019-01-29 17:32:55.000000000 +0000 @@ -71,6 +71,6 @@ #(u'ta', u'தமிழ்', N_(u'Tamil')), (u'tr', u'Türkçe', N_(u'Turkish')), (u'uk', u'Украї́нська мо́ва', N_(u'Ukrainian')), - (u'zh_CN', u'中文', N_(u'Chinese')), - (u'zh_TW', u'傳統中文', N_(u'Traditional Chinese')), + (u'zh_CN', u'中文(中国大陆)', N_(u'Chinese (China)')), + (u'zh_TW', u'中文(台灣)', N_(u'Chinese (Taiwan)')), ] diff -Nru picard-2.1.0/picard/__init__.py picard-2.1.2/picard/__init__.py --- picard-2.1.0/picard/__init__.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/__init__.py 2019-01-29 17:32:55.000000000 +0000 @@ -21,7 +21,7 @@ PICARD_ORG_NAME = "MusicBrainz" PICARD_APP_NAME = "Picard" -PICARD_VERSION = (2, 1, 0, 'final', 0) +PICARD_VERSION = (2, 1, 2, 'final', 0) # optional build version diff -Nru picard-2.1.0/picard/tagger.py picard-2.1.2/picard/tagger.py --- picard-2.1.0/picard/tagger.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/tagger.py 2019-01-29 17:32:55.000000000 +0000 @@ -91,7 +91,7 @@ MBAPIHelper, ) -import picard.resources +import picard.resources # pylint: disable=unused-import from picard.ui.itemviews import BaseTreeView from picard.ui.mainwindow import MainWindow diff -Nru picard-2.1.0/picard/ui/coverartbox.py picard-2.1.2/picard/ui/coverartbox.py --- picard-2.1.0/picard/ui/coverartbox.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/ui/coverartbox.py 2019-01-29 17:32:55.000000000 +0000 @@ -66,7 +66,12 @@ if self.active and event.button() == QtCore.Qt.LeftButton: self.clicked.emit() - def dragEnterEvent(self, event): + @staticmethod + def dragEnterEvent(event): + event.acceptProposedAction() + + @staticmethod + def dragMoveEvent(event): event.acceptProposedAction() def dropEvent(self, event): diff -Nru picard-2.1.0/picard/ui/infodialog.py picard-2.1.2/picard/ui/infodialog.py --- picard-2.1.0/picard/ui/infodialog.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/ui/infodialog.py 2019-01-29 17:32:55.000000000 +0000 @@ -253,7 +253,7 @@ info.append((_('Format:'), file_.orig_metadata['~format'])) try: size = os.path.getsize(encode_filename(file_.filename)) - sizestr = "%s (%s)" % (bytes1human.decimal(size), bytes2human.binary(size)) + sizestr = "%s (%s)" % (bytes2human.decimal(size), bytes2human.binary(size)) info.append((_('Size:'), sizestr)) except BaseException: pass diff -Nru picard-2.1.0/picard/ui/options/dialog.py picard-2.1.2/picard/ui/options/dialog.py --- picard-2.1.0/picard/ui/options/dialog.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/ui/options/dialog.py 2019-01-29 17:32:55.000000000 +0000 @@ -32,7 +32,7 @@ HashableTreeWidgetItem, PicardDialog, ) -from picard.ui.options import ( +from picard.ui.options import ( # pylint: disable=unused-import OptionsCheckError, _pages as page_classes, about, diff -Nru picard-2.1.0/picard/ui/options/general.py picard-2.1.2/picard/ui/options/general.py --- picard-2.1.0/picard/ui/options/general.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/ui/options/general.py 2019-01-29 17:32:55.000000000 +0000 @@ -18,7 +18,6 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. from PyQt5 import QtCore -from PyQt5.QtWidgets import QInputDialog from picard import config from picard.const import ( diff -Nru picard-2.1.0/picard/ui/options/interface.py picard-2.1.2/picard/ui/options/interface.py --- picard-2.1.0/picard/ui/options/interface.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/ui/options/interface.py 2019-01-29 17:32:55.000000000 +0000 @@ -293,7 +293,7 @@ babel_415_workaround_list = [] for action in action_list: babel_415_workaround = self.parent().TOOLBAR_BUTTONS[action]['label'] - temp_list.append([_(babel_415_workaround), action]) + babel_415_workaround_list.append([_(babel_415_workaround), action]) self.action_list = sorted(babel_415_workaround_list) self.combo_box = QtWidgets.QComboBox(self) diff -Nru picard-2.1.0/picard/webservice/__init__.py picard-2.1.2/picard/webservice/__init__.py --- picard-2.1.0/picard/webservice/__init__.py 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/picard/webservice/__init__.py 2019-01-29 17:32:55.000000000 +0000 @@ -356,7 +356,7 @@ redirect_port, redirect_path, request.handler, request.parse_response_type, priority=True, important=True, - refresh=request.refresh, queryargs=redirect_query, + refresh=request.refresh, queryargs=redirect_query, mblogin=request.mblogin, cacheloadcontrol=request.attribute(QNetworkRequest.CacheLoadControlAttribute)) else: log.error("Redirect loop: %s", diff -Nru picard-2.1.0/po/appstream/de.po picard-2.1.2/po/appstream/de.po --- picard-2.1.0/po/appstream/de.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/appstream/de.po 2019-01-29 17:32:55.000000000 +0000 @@ -4,6 +4,7 @@ # FIRST AUTHOR , YEAR. # # Translators: +# Wieland Hoffmann , 2018 # Laurent Monin , 2018 # #, fuzzy @@ -86,7 +87,7 @@ #: org.musicbrainz.Picard.appdata.xml.in:38 msgid "CD lookups: Picard can lookup entire music CDs with a click." msgstr "" -"CD-Abfrage: Picard kann mit nur einem Click die gesamten Daten einer Musik-" +"CD-Abfrage: Picard kann mit nur einem Klick die gesamten Daten einer Musik-" "CD abfragen." #: org.musicbrainz.Picard.appdata.xml.in:41 diff -Nru picard-2.1.0/po/appstream/he.po picard-2.1.2/po/appstream/he.po --- picard-2.1.0/po/appstream/he.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/appstream/he.po 2019-01-29 17:32:55.000000000 +0000 @@ -79,7 +79,7 @@ " releases." msgstr "" "מסד נתונים מקיף: פיקארד משתמש במסד הנתונים הפתוח המתוחזק על ידי קהילת " -"MusicBrainz על מנת לספק מידע מדויק על מיליוני מהדורות מוזיקה." +"MusicBrainz על מנת לספק מידע מדויק על מיליוני הוצאות מוזיקה." #: org.musicbrainz.Picard.appdata.xml.in:38 msgid "CD lookups: Picard can lookup entire music CDs with a click." diff -Nru picard-2.1.0/po/ar.po picard-2.1.2/po/ar.po --- picard-2.1.0/po/ar.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/ar.po 2019-01-29 17:32:55.000000000 +0000 @@ -1,5 +1,5 @@ # Translations template for picard. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the picard project. # # Translators: @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: MusicBrainz\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-12-08 13:30+0100\n" -"PO-Revision-Date: 2018-12-08 12:35+0000\n" +"POT-Creation-Date: 2019-01-23 11:57+0100\n" +"PO-Revision-Date: 2019-01-23 13:16+0000\n" "Last-Translator: Michael Wiencek \n" "Language-Team: Arabic (http://www.transifex.com/musicbrainz/musicbrainz/language/ar/)\n" "MIME-Version: 1.0\n" @@ -142,22 +142,22 @@ msgid "My script %d" msgstr "" -#: picard/file.py:616 +#: picard/file.py:598 #, python-format msgid "No matching tracks for file '%(filename)s'" msgstr "لا مقطوعات تطابق الملف ”%(filename)s“" -#: picard/file.py:629 +#: picard/file.py:611 #, python-format msgid "No matching tracks above the threshold for file '%(filename)s'" msgstr "" -#: picard/file.py:637 +#: picard/file.py:619 #, python-format msgid "File '%(filename)s' identified!" msgstr "عُرّف الملف ”%(filename)s“!" -#: picard/file.py:659 +#: picard/file.py:641 #, python-format msgid "Looking up the metadata for file %(filename)s ..." msgstr "يبحث عن معلومات وصفية للملف %(filename)s..." @@ -419,11 +419,11 @@ msgstr "" #: picard/const/languages.py:74 -msgid "Chinese" +msgid "Chinese (China)" msgstr "" #: picard/const/languages.py:75 -msgid "Traditional Chinese" +msgid "Chinese (Taiwan)" msgstr "" #: picard/coverart/__init__.py:105 @@ -563,43 +563,43 @@ msgstr[4] "" msgstr[5] "" -#: picard/ui/coverartbox.py:262 +#: picard/ui/coverartbox.py:267 msgid "View release on MusicBrainz" msgstr "اعرض الإصدار على MusicBrainz" -#: picard/ui/coverartbox.py:268 +#: picard/ui/coverartbox.py:273 msgid "Common images on all tracks" msgstr "" -#: picard/ui/coverartbox.py:270 +#: picard/ui/coverartbox.py:275 msgid "Tracks contain different images" msgstr "تحتوي المقطوعات صورا مختلفة" -#: picard/ui/coverartbox.py:310 +#: picard/ui/coverartbox.py:315 msgid "Show more details" msgstr "اعرض تفاصيل أكثر" -#: picard/ui/coverartbox.py:347 +#: picard/ui/coverartbox.py:352 msgid "New Cover Art" msgstr "" -#: picard/ui/coverartbox.py:348 +#: picard/ui/coverartbox.py:353 msgid "Original Cover Art" msgstr "" -#: picard/ui/coverartbox.py:481 +#: picard/ui/coverartbox.py:486 msgid "Show more details..." msgstr "اعرض تفاصيل أكثر..." -#: picard/ui/coverartbox.py:487 +#: picard/ui/coverartbox.py:492 msgid "Keep original cover art" msgstr "" -#: picard/ui/coverartbox.py:496 +#: picard/ui/coverartbox.py:501 msgid "Replace front cover art on drop" msgstr "" -#: picard/ui/coverartbox.py:501 +#: picard/ui/coverartbox.py:506 msgid "Append front cover art on drop" msgstr "" @@ -1637,7 +1637,7 @@ msgid "Log out" msgstr "اخرج" -#: picard/ui/options/general.py:39 picard/ui/ui_options_general.py:138 +#: picard/ui/options/general.py:38 picard/ui/ui_options_general.py:138 msgid "General" msgstr "عام" @@ -2224,7 +2224,7 @@ msgid "Invalid fpcalc executable" msgstr "" -#: picard/ui/options/general.py:99 +#: picard/ui/options/general.py:98 #, python-format msgid "Logged in as %s." msgstr "والج كَ‍ %s." @@ -2391,11 +2391,11 @@ msgid "Ratings" msgstr "التقييمات" -#: picard/ui/options/releases.py:139 +#: picard/ui/options/releases.py:142 msgid "Preferred Releases" msgstr "" -#: picard/ui/options/releases.py:173 +#: picard/ui/options/releases.py:177 msgid "Reset all" msgstr "صفّر الكل" diff -Nru picard-2.1.0/po/attributes/da.po picard-2.1.2/po/attributes/da.po --- picard-2.1.0/po/attributes/da.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/attributes/da.po 2019-01-29 17:32:55.000000000 +0000 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: MusicBrainz\n" -"PO-Revision-Date: 2018-12-18 09:34+0000\n" +"PO-Revision-Date: 2019-01-22 20:58+0000\n" "Last-Translator: yvanz\n" "Language-Team: Danish (http://www.transifex.com/musicbrainz/musicbrainz/language/da/)\n" "MIME-Version: 1.0\n" @@ -2413,6 +2413,13 @@ msgid "Floppy Disk" msgstr "" +#: DB:gender/description:4 +msgctxt "gender" +msgid "" +"For cases where gender just doesn't apply at all (like companies entered as " +"artists)." +msgstr "" + #: DB:work_attribute_type/name:16 msgctxt "work_attribute_type" msgid "Form (Ottoman, Turkish)" @@ -4647,6 +4654,11 @@ msgid "None" msgstr "" +#: DB:gender/name:4 +msgctxt "gender" +msgid "Not applicable" +msgstr "" + #: DB:work_attribute_type_allowed_value/value:491 msgctxt "work_attribute_type_allowed_value" msgid "Nuşingül" diff -Nru picard-2.1.0/po/attributes/de.po picard-2.1.2/po/attributes/de.po --- picard-2.1.0/po/attributes/de.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/attributes/de.po 2019-01-29 17:32:55.000000000 +0000 @@ -43,8 +43,8 @@ msgid "" msgstr "" "Project-Id-Version: MusicBrainz\n" -"PO-Revision-Date: 2018-12-18 09:34+0000\n" -"Last-Translator: nikki\n" +"PO-Revision-Date: 2019-01-22 20:58+0000\n" +"Last-Translator: yvanz\n" "Language-Team: German (http://www.transifex.com/musicbrainz/musicbrainz/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2451,6 +2451,13 @@ msgid "Floppy Disk" msgstr "" +#: DB:gender/description:4 +msgctxt "gender" +msgid "" +"For cases where gender just doesn't apply at all (like companies entered as " +"artists)." +msgstr "" + #: DB:work_attribute_type/name:16 msgctxt "work_attribute_type" msgid "Form (Ottoman, Turkish)" @@ -4685,6 +4692,11 @@ msgid "None" msgstr "Keine" +#: DB:gender/name:4 +msgctxt "gender" +msgid "Not applicable" +msgstr "" + #: DB:work_attribute_type_allowed_value/value:491 msgctxt "work_attribute_type_allowed_value" msgid "Nuşingül" diff -Nru picard-2.1.0/po/attributes/el.po picard-2.1.2/po/attributes/el.po --- picard-2.1.0/po/attributes/el.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/attributes/el.po 2019-01-29 17:32:55.000000000 +0000 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: MusicBrainz\n" -"PO-Revision-Date: 2018-12-18 09:34+0000\n" +"PO-Revision-Date: 2019-01-22 20:58+0000\n" "Last-Translator: yvanz\n" "Language-Team: Greek (http://www.transifex.com/musicbrainz/musicbrainz/language/el/)\n" "MIME-Version: 1.0\n" @@ -2416,6 +2416,13 @@ msgid "Floppy Disk" msgstr "" +#: DB:gender/description:4 +msgctxt "gender" +msgid "" +"For cases where gender just doesn't apply at all (like companies entered as " +"artists)." +msgstr "" + #: DB:work_attribute_type/name:16 msgctxt "work_attribute_type" msgid "Form (Ottoman, Turkish)" @@ -4650,6 +4657,11 @@ msgid "None" msgstr "Κανένα" +#: DB:gender/name:4 +msgctxt "gender" +msgid "Not applicable" +msgstr "" + #: DB:work_attribute_type_allowed_value/value:491 msgctxt "work_attribute_type_allowed_value" msgid "Nuşingül" diff -Nru picard-2.1.0/po/attributes/en_CA.po picard-2.1.2/po/attributes/en_CA.po --- picard-2.1.0/po/attributes/en_CA.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/attributes/en_CA.po 2019-01-29 17:32:55.000000000 +0000 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: MusicBrainz\n" -"PO-Revision-Date: 2018-12-18 09:34+0000\n" +"PO-Revision-Date: 2019-01-22 20:58+0000\n" "Last-Translator: yvanz\n" "Language-Team: English (Canada) (http://www.transifex.com/musicbrainz/musicbrainz/language/en_CA/)\n" "MIME-Version: 1.0\n" @@ -2414,6 +2414,13 @@ msgid "Floppy Disk" msgstr "" +#: DB:gender/description:4 +msgctxt "gender" +msgid "" +"For cases where gender just doesn't apply at all (like companies entered as " +"artists)." +msgstr "" + #: DB:work_attribute_type/name:16 msgctxt "work_attribute_type" msgid "Form (Ottoman, Turkish)" @@ -4648,6 +4655,11 @@ msgid "None" msgstr "None" +#: DB:gender/name:4 +msgctxt "gender" +msgid "Not applicable" +msgstr "" + #: DB:work_attribute_type_allowed_value/value:491 msgctxt "work_attribute_type_allowed_value" msgid "Nuşingül" diff -Nru picard-2.1.0/po/attributes/en_GB.po picard-2.1.2/po/attributes/en_GB.po --- picard-2.1.0/po/attributes/en_GB.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/attributes/en_GB.po 2019-01-29 17:32:55.000000000 +0000 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: MusicBrainz\n" -"PO-Revision-Date: 2018-12-18 09:34+0000\n" +"PO-Revision-Date: 2019-01-22 20:58+0000\n" "Last-Translator: yvanz\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/musicbrainz/musicbrainz/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -2413,6 +2413,13 @@ msgid "Floppy Disk" msgstr "" +#: DB:gender/description:4 +msgctxt "gender" +msgid "" +"For cases where gender just doesn't apply at all (like companies entered as " +"artists)." +msgstr "" + #: DB:work_attribute_type/name:16 msgctxt "work_attribute_type" msgid "Form (Ottoman, Turkish)" @@ -4647,6 +4654,11 @@ msgid "None" msgstr "None" +#: DB:gender/name:4 +msgctxt "gender" +msgid "Not applicable" +msgstr "" + #: DB:work_attribute_type_allowed_value/value:491 msgctxt "work_attribute_type_allowed_value" msgid "Nuşingül" diff -Nru picard-2.1.0/po/attributes/eo.po picard-2.1.2/po/attributes/eo.po --- picard-2.1.0/po/attributes/eo.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/attributes/eo.po 2019-01-29 17:32:55.000000000 +0000 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: MusicBrainz\n" -"PO-Revision-Date: 2018-12-18 09:34+0000\n" +"PO-Revision-Date: 2019-01-22 20:58+0000\n" "Last-Translator: yvanz\n" "Language-Team: Esperanto (http://www.transifex.com/musicbrainz/musicbrainz/language/eo/)\n" "MIME-Version: 1.0\n" @@ -2414,6 +2414,13 @@ msgid "Floppy Disk" msgstr "" +#: DB:gender/description:4 +msgctxt "gender" +msgid "" +"For cases where gender just doesn't apply at all (like companies entered as " +"artists)." +msgstr "" + #: DB:work_attribute_type/name:16 msgctxt "work_attribute_type" msgid "Form (Ottoman, Turkish)" @@ -4648,6 +4655,11 @@ msgid "None" msgstr "Neniu" +#: DB:gender/name:4 +msgctxt "gender" +msgid "Not applicable" +msgstr "" + #: DB:work_attribute_type_allowed_value/value:491 msgctxt "work_attribute_type_allowed_value" msgid "Nuşingül" diff -Nru picard-2.1.0/po/attributes/es.po picard-2.1.2/po/attributes/es.po --- picard-2.1.0/po/attributes/es.po 2018-12-21 09:28:13.000000000 +0000 +++ picard-2.1.2/po/attributes/es.po 2019-01-29 17:32:55.000000000 +0000 @@ -25,6 +25,7 @@ # Nicolás Tamargo