Skip to content

Commit 76d9caa

Browse files
committed
Merge branch 'master' into release
2 parents 833ba8d + 7cd2b30 commit 76d9caa

File tree

221 files changed

+17903
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+17903
-116
lines changed

.github/workflows/manual_test_build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
name: Check with LintRST and Build
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v4
3636
- name: Set up Python ${{ inputs.pythonVersion }}
37-
uses: actions/setup-python@v1
37+
uses: actions/setup-python@v5
3838
with:
3939
python-version: ${{ inputs.pythonVersion }}
4040
- name: Install dependencies
@@ -52,7 +52,7 @@ jobs:
5252
run: |
5353
python ./setup.py build map
5454
- name: Store Tag Map Build Output File
55-
uses: actions/upload-artifact@v2
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: tag_map_files
5858
path: docs/MusicBrainz_Picard_Tag_Map.*
@@ -65,7 +65,7 @@ jobs:
6565
python ./setup.py clean html
6666
python ./setup.py ${{ env.MY_BUILD_ARG }} build html
6767
- name: Store HTML Build Output File
68-
uses: actions/upload-artifact@v2
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: html_files
7171
path: docs/*.zip
@@ -75,7 +75,7 @@ jobs:
7575
python ./setup.py clean epub
7676
python ./setup.py ${{ env.MY_BUILD_ARG }} build epub
7777
- name: Store ePub Build Output File
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: epub_file
8181
path: docs/*.epub
@@ -95,7 +95,7 @@ jobs:
9595
python ./setup.py clean pdf
9696
python ./setup.py ${{ env.MY_BUILD_ARG }} build pdf
9797
- name: Store PDF Build Output File
98-
uses: actions/upload-artifact@v2
98+
uses: actions/upload-artifact@v4
9999
with:
100100
name: pdf_file
101101
path: docs/*.pdf

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
matrix:
3636
python-version: [3.11]
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v4
3939
- name: Set up Python ${{ matrix.python-version }}
40-
uses: actions/setup-python@v1
40+
uses: actions/setup-python@v5
4141
with:
4242
python-version: ${{ matrix.python-version }}
4343
- name: Install dependencies
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
python ./setup.py build map
5757
- name: Store Tag Map Build Output File
58-
uses: actions/upload-artifact@v2
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: tag_map_files
6161
path: docs/MusicBrainz_Picard_Tag_Map.*
@@ -65,7 +65,7 @@ jobs:
6565
python ./setup.py clean html
6666
python ./setup.py build html
6767
- name: Store HTML Build Output File
68-
uses: actions/upload-artifact@v2
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: html_files
7171
path: docs/*.zip
@@ -75,7 +75,7 @@ jobs:
7575
python ./setup.py clean epub
7676
python ./setup.py build epub
7777
- name: Store ePub Build Output File
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: epub_file
8181
path: docs/*.epub
@@ -95,7 +95,7 @@ jobs:
9595
python ./setup.py clean pdf
9696
python ./setup.py build pdf
9797
- name: Store PDF Build Output File
98-
uses: actions/upload-artifact@v2
98+
uses: actions/upload-artifact@v4
9999
with:
100100
name: pdf_file
101101
path: docs/*.pdf

.github/workflows/test_build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
matrix:
3838
python-version: [3.11]
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v4
4141
- name: Set up Python ${{ matrix.python-version }}
42-
uses: actions/setup-python@v1
42+
uses: actions/setup-python@v5
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
- name: Install dependencies
@@ -57,7 +57,7 @@ jobs:
5757
run: |
5858
python ./setup.py build map
5959
- name: Store Tag Map Build Output File
60-
uses: actions/upload-artifact@v2
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: tag_map_files
6363
path: docs/MusicBrainz_Picard_Tag_Map.*
@@ -70,7 +70,7 @@ jobs:
7070
python ./setup.py clean html
7171
python ./setup.py -l all build html
7272
- name: Store HTML Build Output Files
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: html_files
7676
path: docs/*.zip
@@ -80,7 +80,7 @@ jobs:
8080
python ./setup.py clean epub
8181
python ./setup.py -l all build epub
8282
- name: Store ePub Build Output Files
83-
uses: actions/upload-artifact@v2
83+
uses: actions/upload-artifact@v4
8484
with:
8585
name: epub_files
8686
path: docs/*.epub
@@ -100,7 +100,7 @@ jobs:
100100
python ./setup.py clean pdf
101101
python ./setup.py -l all build pdf
102102
- name: Store PDF Build Output Files
103-
uses: actions/upload-artifact@v2
103+
uses: actions/upload-artifact@v4
104104
with:
105105
name: pdf_files
106106
path: docs/*.pdf

.github/workflows/test_build_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
matrix:
3434
python-version: [3.11]
3535
steps:
36-
- uses: actions/checkout@v1
36+
- uses: actions/checkout@v4
3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v1
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141
- name: Install dependencies

_locale/de/LC_MESSAGES/about_picard/acknowledgements.po

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@
44
# package.
55
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
66
# Philipp Wolfer <[email protected]>, 2023.
7+
# chaban <[email protected]>, 2024.
78
msgid ""
89
msgstr ""
910
"Project-Id-Version: MusicBrainz Picard v2.6.3\n"
1011
"Report-Msgid-Bugs-To: \n"
1112
"POT-Creation-Date: 2024-07-30 11:08-0600\n"
12-
"PO-Revision-Date: 2023-08-25 09:24+0000\n"
13-
"Last-Translator: Philipp Wolfer <[email protected]>\n"
14-
"Language-Team: German <https://translations.metabrainz.org/projects/picard-"
15-
"docs/about_picardacknowledgements/de/>\n"
13+
"PO-Revision-Date: 2024-12-29 21:42+0000\n"
14+
"Last-Translator: chaban <[email protected]>\n"
15+
"Language-Team: German <https://translations.metabrainz.org/projects/"
16+
"picard-docs/about_picardacknowledgements/de/>\n"
1617
"Language: de\n"
1718
"MIME-Version: 1.0\n"
1819
"Content-Type: text/plain; charset=UTF-8\n"
1920
"Content-Transfer-Encoding: 8bit\n"
2021
"Plural-Forms: nplurals=2; plural=n != 1;\n"
21-
"X-Generator: Weblate 4.18.2\n"
22+
"X-Generator: Weblate 5.9.2\n"
2223
"Generated-By: Babel 2.9.1\n"
2324

2425
#: ../../about_picard/acknowledgements.rst:4
@@ -34,7 +35,6 @@ msgstr ""
3435
"und Verbesserung des Picard-Benutzerhandbuchs."
3536

3637
#: ../../about_picard/acknowledgements.rst:8
37-
#, fuzzy
3838
msgid ""
3939
"This list includes contributors to the documentation, regardless of their "
4040
"role. In addition to actual content contributors, this includes leads, "
@@ -44,9 +44,9 @@ msgid ""
4444
"their position in the list."
4545
msgstr ""
4646
"Diese Liste umfasst alle, die an der Dokumentation mitarbeiten, unabhängig "
47-
"von ihrer Rolle. Dazu gehören neben den eigentlichen Autoren auch die "
48-
"Leiter, Übersetzer, Prüfer und Korrekturleser. Alle Beiträge sind wertvoll "
49-
"und werden geschätzt. Daher sind die Namen in alphabetischer Reihenfolge "
47+
"von ihrer Rolle. Dazu gehören neben den eigentlichen Autoren auch die "
48+
"Leiter, Übersetzer, Prüfer und Korrekturleser. Alle Beiträge sind wertvoll "
49+
"und werden geschätzt. Daher sind die Namen in alphabetischer Reihenfolge "
5050
"aufgeführt, um nicht den Eindruck zu erwecken, dass die relative Bedeutung "
5151
"des Beitrags einer Person von ihrer Position in der Liste abhängt."
5252

@@ -76,7 +76,7 @@ msgstr "Gabriel Ferreira"
7676

7777
#: ../../about_picard/acknowledgements.rst:17
7878
msgid "Giorgio Fontanive"
79-
msgstr ""
79+
msgstr "Giorgio Fontanive"
8080

8181
#: ../../about_picard/acknowledgements.rst:18
8282
msgid "Rahul Kumar Gupta"
@@ -108,7 +108,7 @@ msgstr "Sambhav Kothari"
108108

109109
#: ../../about_picard/acknowledgements.rst:25
110110
msgid "Soham Kukreti"
111-
msgstr ""
111+
msgstr "Soham Kukreti"
112112

113113
#: ../../about_picard/acknowledgements.rst:26
114114
msgid "Laurent Monin"
@@ -132,7 +132,7 @@ msgstr "Theodore Fabian Rudy"
132132

133133
#: ../../about_picard/acknowledgements.rst:31
134134
msgid "Suryansh Shakya"
135-
msgstr ""
135+
msgstr "Suryansh Shakya"
136136

137137
#: ../../about_picard/acknowledgements.rst:32
138138
msgid "skelly37"
@@ -160,20 +160,19 @@ msgstr "Philipp Wolfer"
160160

161161
#: ../../about_picard/acknowledgements.rst:38
162162
msgid "yvanzo"
163-
msgstr ""
163+
msgstr "yvanzo"
164164

165165
#: ../../about_picard/acknowledgements.rst:39
166166
msgid "Shadab Zafar"
167167
msgstr "Shadab Zafar"
168168

169169
#: ../../about_picard/acknowledgements.rst:44
170-
#, fuzzy
171170
msgid ""
172171
"There are likely others that have not yet been identified, so we apologize "
173172
"if your name has been missed. Please let us know and we'll make sure that it "
174173
"is added to the list."
175174
msgstr ""
176175
"Wahrscheinlich gibt es noch andere, die noch nicht identifiziert wurden. Wir "
177-
"bitten um Entschuldigung, wenn dein Name übersehen worden ist. Bitte lasse "
176+
"bitten um Entschuldigung, wenn dein Name übersehen worden ist. Bitte lasse "
178177
"es uns wissen und wir werden dafür sorgen, dass er in die Liste aufgenommen "
179178
"wird."

_locale/de/LC_MESSAGES/extending/extending.po

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,52 @@
11
# SOME DESCRIPTIVE TITLE.
22
# Copyright (C) This documentation is licensed under CC0 1.0.
33
# This file is distributed under the same license as the MusicBrainz Picard package.
4-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5-
#
4+
# chaban <[email protected]>, 2024.
65
msgid ""
76
msgstr ""
87
"Project-Id-Version: MusicBrainz Picard v2.6.3\n"
98
"Report-Msgid-Bugs-To: \n"
109
"POT-Creation-Date: 2023-03-14 08:09+0100\n"
11-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12-
"Last-Translator: Automatically generated\n"
13-
"Language-Team: none\n"
10+
"PO-Revision-Date: 2024-12-29 21:42+0000\n"
11+
"Last-Translator: chaban <[email protected]>\n"
12+
"Language-Team: German <https://translations.metabrainz.org/projects/"
13+
"picard-docs/extendingextending/de/>\n"
1414
"Language: de\n"
1515
"MIME-Version: 1.0\n"
1616
"Content-Type: text/plain; charset=UTF-8\n"
1717
"Content-Transfer-Encoding: 8bit\n"
18+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
19+
"X-Generator: Weblate 5.9.2\n"
1820

1921
#: ../../extending/extending.rst:4
2022
msgid "Extending Picard"
21-
msgstr ""
23+
msgstr "Picard erweitern"
2224

2325
#: ../../extending/extending.rst:6
2426
msgid ""
2527
"There are two primary ways that the functionality of MusicBrainz Picard can "
2628
"be extended: :doc:`plugins <plugins>` and :doc:`scripts <scripts>`."
2729
msgstr ""
30+
"Der Funktionsumfang von Picard kann hauptsächlich auf zwei Arten erweitert "
31+
"werden: :doc:`Plugins <plugins>` und :doc:`Skripte <scripts>`."
2832

2933
#: ../../extending/extending.rst:9
3034
msgid ""
3135
"Plugins can be installed / uninstalled and enabled / disabled from the "
3236
"Options menu. Installed plugins are loaded during the startup of Picard, and "
3337
"are made available to the program."
3438
msgstr ""
39+
"Plugins können in den Einstellungen installiert / deinstalliert und "
40+
"aktiviert / deaktiviert werden. Installierte Plugins werden beim "
41+
"Startvorgang von Picard geladen und stehen dann zur Verfügung."
3542

3643
#: ../../extending/extending.rst:13
3744
msgid ""
3845
"Scripts are stored within the user settings, and are managed from the :"
3946
"menuselection:`\"Options --> Options...\"` menu."
4047
msgstr ""
48+
"Skripte werden in den Benutzereinstellungen gespeichert und können über das "
49+
"Menü: `\"Einstellungen--> Einstellungen...\"` erreicht werden."
4150

4251
#: ../../extending/extending.rst:19
4352
msgid "Details: :doc:`plugins` / :doc:`scripts` / :doc:`processing`"

_locale/de/LC_MESSAGES/faq/faq_config.po

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,27 @@
33
# This file is distributed under the same license as the MusicBrainz Picard
44
# package.
55
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
6-
#
6+
# chaban <[email protected]>, 2024.
77
msgid ""
88
msgstr ""
99
"Project-Id-Version: MusicBrainz Picard v2.6.3\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2023-05-08 09:45-0600\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: Automatically generated\n"
14-
"Language-Team: none\n"
12+
"PO-Revision-Date: 2024-12-27 16:42+0000\n"
13+
"Last-Translator: chaban <[email protected]>\n"
14+
"Language-Team: German <https://translations.metabrainz.org/projects/"
15+
"picard-docs/faqfaq_config/de/>\n"
1516
"Language: de\n"
1617
"MIME-Version: 1.0\n"
1718
"Content-Type: text/plain; charset=UTF-8\n"
1819
"Content-Transfer-Encoding: 8bit\n"
19-
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
20+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
21+
"X-Generator: Weblate 5.9.2\n"
2022
"Generated-By: Babel 2.9.1\n"
2123

2224
#: ../../faq/faq_config.rst:4
2325
msgid ":index:`Configuration <configuration; config file location>`"
24-
msgstr ""
26+
msgstr ":index:`Konfiguration <configuration; config file location>`"
2527

2628
#: ../../faq/faq_config.rst:7
2729
msgid "Where is the Picard :index:`configuration <configuration; file>` saved?"

_locale/de/LC_MESSAGES/faq/faq_usage.po

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,22 @@
33
# This file is distributed under the same license as the MusicBrainz Picard
44
# package.
55
# Philipp Wolfer <[email protected]>, 2021.
6+
# chaban <[email protected]>, 2024.
67
msgid ""
78
msgstr ""
89
"Project-Id-Version: MusicBrainz Picard v2.6.3\n"
910
"Report-Msgid-Bugs-To: \n"
1011
"POT-Creation-Date: 2023-03-14 08:09+0100\n"
11-
"PO-Revision-Date: 2021-08-21 22:51+0000\n"
12-
"Last-Translator: Philipp Wolfer <[email protected]>\n"
13-
"Language-Team: German <https://translate.uploadedlobster.com/projects/picard-"
14-
"docs/faqfaq_usage/de/>\n"
12+
"PO-Revision-Date: 2024-12-27 16:42+0000\n"
13+
"Last-Translator: chaban <[email protected]>\n"
14+
"Language-Team: German <https://translations.metabrainz.org/projects/"
15+
"picard-docs/faqfaq_usage/de/>\n"
1516
"Language: de\n"
1617
"MIME-Version: 1.0\n"
1718
"Content-Type: text/plain; charset=UTF-8\n"
1819
"Content-Transfer-Encoding: 8bit\n"
1920
"Plural-Forms: nplurals=2; plural=n != 1;\n"
21+
"X-Generator: Weblate 5.9.2\n"
2022
"Generated-By: Babel 2.10.1\n"
2123

2224
#: ../../faq/faq_usage.rst:4
@@ -78,7 +80,7 @@ msgstr ""
7880

7981
#: ../../faq/faq_usage.rst:32
8082
msgid "**Has the release been deleted from MusicBrainz?**"
81-
msgstr ""
83+
msgstr "**Wurde die Veröffentlichung von MusicBrainz gelöscht?**"
8284

8385
#: ../../faq/faq_usage.rst:0
8486
msgid ""

0 commit comments

Comments
 (0)